mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
ScriptCore: Moved Component + Doc
This commit is contained in:
@@ -1,8 +1,14 @@
|
||||
using GlitchyEngine.Core;
|
||||
|
||||
namespace GlitchyEngine;
|
||||
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);
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
using GlitchyEngine.Components;
|
||||
using GlitchyEngine.Math;
|
||||
|
||||
namespace GlitchyEngine;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
using GlitchyEngine.Components;
|
||||
using GlitchyEngine.Core;
|
||||
using GlitchyEngine.Math;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user