2023-03-26 11:19:03 +08:00
|
|
|
|
namespace DCFApixels.DragonECS
|
|
|
|
|
{
|
|
|
|
|
public class EcsConsts
|
|
|
|
|
{
|
2023-05-07 00:50:02 +08:00
|
|
|
|
public const string FRAMEWORK_NAME = "DragonECS";
|
|
|
|
|
|
2023-05-30 18:30:10 +08:00
|
|
|
|
public const string EXCEPTION_MESSAGE_PREFIX = "[" + FRAMEWORK_NAME + "] ";
|
2023-03-26 11:19:03 +08:00
|
|
|
|
public const string DEBUG_PREFIX = "[DEBUG] ";
|
2023-03-30 01:57:10 +08:00
|
|
|
|
public const string DEBUG_WARNING_TAG = "WARNING";
|
|
|
|
|
public const string DEBUG_ERROR_TAG = "ERROR";
|
2023-04-26 16:45:37 +08:00
|
|
|
|
|
2023-05-07 00:50:02 +08:00
|
|
|
|
public const string PRE_BEGIN_LAYER = nameof(PRE_BEGIN_LAYER);
|
|
|
|
|
public const string BEGIN_LAYER = nameof(BEGIN_LAYER);
|
|
|
|
|
public const string BASIC_LAYER = nameof(BASIC_LAYER);
|
|
|
|
|
public const string END_LAYER = nameof(END_LAYER);
|
|
|
|
|
public const string POST_END_LAYER = nameof(POST_END_LAYER);
|
2023-12-20 23:16:57 +08:00
|
|
|
|
|
|
|
|
|
public const string META_HIDDEN_TAG = "HiddenInDebagging";
|
2023-03-26 11:19:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|