A game framework written with osu! in mind.
at master 16 lines 411 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4using osu.Framework.Graphics.Textures; 5 6namespace osu.Framework.Graphics.Lines 7{ 8 public class TexturedPath : Path 9 { 10 public new Texture Texture 11 { 12 get => base.Texture; 13 set => base.Texture = value; 14 } 15 } 16}