mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 09:54:35 +08:00
14 lines
281 B
C#
14 lines
281 B
C#
![]() |
namespace DCFApixels.DragonECS
|
|||
|
{
|
|||
|
[DebugColor(DebugColor.Black)]
|
|||
|
public class SystemsBlockMarkerSystem : IEcsSystem
|
|||
|
{
|
|||
|
public readonly string name;
|
|||
|
|
|||
|
public SystemsBlockMarkerSystem(string name)
|
|||
|
{
|
|||
|
this.name = name;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|