11 lines
167 B
C#
11 lines
167 B
C#
using Unity.Entities;
|
|
|
|
namespace Common
|
|
{
|
|
public struct TdPrefabs : IComponentData
|
|
{
|
|
public Entity Character;
|
|
public Entity FPSPlayer;
|
|
}
|
|
}
|