using GlitchyEngine.Core;
namespace GlitchyEngine.Components;
///
/// The base class for all Components.
///
public abstract class Component : EngineObject
{
///
/// Gets the entity that this component is attached to.
///
public Entity Entity => new(_uuid);
}