mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
12 lines
286 B
C#
12 lines
286 B
C#
namespace GlitchyEngine.Core;
|
|
|
|
/// <summary>
|
|
/// The base class for all Components.
|
|
/// </summary>
|
|
public abstract class Component : EngineObject
|
|
{
|
|
/// <summary>
|
|
/// Gets the entity that this component is attached to.
|
|
/// </summary>
|
|
public Entity Entity => new(_uuid);
|
|
} |