Files
glitchy-engine-beef/ScriptCore/Components/Component.cs
T

14 lines
319 B
C#

using GlitchyEngine.Core;
namespace GlitchyEngine.Components;
/// <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);
}