From 131bb0345198c90fef5e00f2ad335b69b82962b2 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Sat, 7 Sep 2024 19:06:28 +0800 Subject: [PATCH] separate EcsConst defs block to EcsDefines --- src/Consts.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Consts.cs b/src/Consts.cs index 114ddd8..89c10cd 100644 --- a/src/Consts.cs +++ b/src/Consts.cs @@ -1,6 +1,6 @@ namespace DCFApixels.DragonECS { - public class EcsConsts + public static class EcsConsts { public const string AUTHOR = "DCFApixels"; public const string FRAMEWORK_NAME = "DragonECS"; @@ -33,9 +33,10 @@ public const string COMPONENTS_GROUP = "Components"; public const string SYSTEMS_GROUP = "Systems"; + } - /// defs - + public static class EcsDefines + { public const bool DISABLE_POOLS_EVENTS = #if DISABLE_POOLS_EVENTS true;