Add initial resource and presenter classes for game entities and effects
This commit is contained in:
10
Code/Presenters/SceneEntity.cs
Normal file
10
Code/Presenters/SceneEntity.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Godot;
|
||||
using Godot.Collections;
|
||||
|
||||
namespace CryptonymThunder.Code.Presenters;
|
||||
|
||||
[GlobalClass]
|
||||
public partial class SceneEntity : Node
|
||||
{
|
||||
[Export] public Array<Resource> ComponentResources { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user