20 lines
305 B
C#
20 lines
305 B
C#
using Unity.Entities;
|
|
using Unity.NetCode;
|
|
|
|
namespace Common
|
|
{
|
|
public struct CharacterTag : IComponentData
|
|
{
|
|
|
|
}
|
|
|
|
public struct NewCharacterTag : IComponentData
|
|
{
|
|
|
|
}
|
|
|
|
public struct TdTeam : IComponentData
|
|
{
|
|
[GhostField] public TeamType Value;
|
|
}
|
|
} |