Documentation

This commit is contained in:
Simon Lübeß
2023-12-13 14:45:33 +01:00
parent ed756f5847
commit a129156641
17 changed files with 211 additions and 37 deletions
+4 -1
View File
@@ -1,11 +1,14 @@
namespace GlitchyEngine.Core;
/// <summary>
/// The base class for all classes that represent something that belongs to the engine (Entities, Components and Assets).
/// </summary>
public abstract class EngineObject
{
protected internal UUID _uuid;
/// <summary>
/// UUID used for identifying the object in the engine.
/// UUID (Universally Unique Identifier) used for identifying the object in the engine.
/// </summary>
public UUID UUID => _uuid;