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
+1 -2
View File
@@ -1,6 +1,5 @@
using System;
using System.Runtime.CompilerServices;
using GlitchyEngine.Components;
using GlitchyEngine.Core;
using GlitchyEngine.Extensions;
@@ -250,7 +249,7 @@ public class Entity : EngineObject
}
/// <summary>
/// Gets the <see cref="GlitchyEngine.Transform"/> <see cref="Component"/> of this <see cref="Entity"/>.
/// Gets the <see cref="Core.Transform"/> <see cref="Component"/> of this <see cref="Entity"/>.
/// </summary>
public Transform Transform => GetComponent<Transform>();