A game framework written with osu! in mind.
at master 14 lines 617 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 4namespace osu.Framework.Graphics 5{ 6 /// <summary> 7 /// An updateable component that can be inserted into the draw hierarchy. 8 /// This is currently used as a marker for cases where nothing more than load, update, lifetime support and hierarchy presence are required. 9 /// Eventually this will be fleshed out (and the inheritance will be reversed to Drawable : Component). 10 /// </summary> 11 public abstract class Component : Drawable 12 { 13 } 14}