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