using gaemstone.ECS; namespace gaemstone.Flecs; [Module, Path("/flecs/core")] public static class ObserverEvent { [Entity] public struct OnAdd { } [Entity] public struct OnRemove { } [Entity] public struct OnSet { } [Entity] public struct UnSet { } [Entity] public struct OnTableEmpty { } [Entity] public struct OnTableFilled { } }