mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-19 10:34:37 +08:00
17 lines
343 B
C#
17 lines
343 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace DCFApixels.DragonECS
|
|||
|
{
|
|||
|
public class EcsComponentMask
|
|||
|
{
|
|||
|
internal Type WorldArchetypeType;
|
|||
|
internal int[] Inc;
|
|||
|
internal int[] Exc;
|
|||
|
public override string ToString()
|
|||
|
{
|
|||
|
return $"Inc({string.Join(", ", Inc)}) Exc({string.Join(", ", Exc)})";
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|