mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
8 lines
143 B
C#
8 lines
143 B
C#
using GlitchyEngine.Core;
|
|
|
|
namespace GlitchyEngine;
|
|
|
|
public abstract class Component : EngineObject
|
|
{
|
|
public Entity Entity => new(_uuid);
|
|
} |