Files
Ecosystem-Project/scripts/Data.cs
2025-08-08 19:39:55 +02:00

14 lines
246 B
C#

using Godot;
using System;
[GlobalClass]
public partial class Data : GodotObject
{
public struct EntityData
{
[Export] public String Name;
[Export] public bool CanFly;
[Export] public bool CanSpawnThings;
}
}