Moved Components to their respective namespaces

This commit is contained in:
Simon Lübeß
2023-12-15 14:53:10 +01:00
parent 66281ebddb
commit b884ee8303
8 changed files with 8 additions and 14 deletions
+12
View File
@@ -0,0 +1,12 @@
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);
}