mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 18:14:37 +08:00
11 lines
317 B
C#
11 lines
317 B
C#
namespace DCFApixels.DragonECS
|
|
{
|
|
public class EcsConsts
|
|
{
|
|
public const string EXCEPTION_MESSAGE_PREFIX = "[DragonECS] ";
|
|
public const string DEBUG_PREFIX = "[DEBUG] ";
|
|
public const string DEBUG_WARNING_TAG = "WARNING";
|
|
public const string DEBUG_ERROR_TAG = "ERROR";
|
|
}
|
|
}
|