15 lines
313 B
C#
15 lines
313 B
C#
using Unity.Collections;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct AgentSourceState
|
|
{
|
|
public int MaxAgentCount;
|
|
|
|
public FixedList512Bytes<int> AgentIds;
|
|
|
|
public FixedList32Bytes<byte> AgentCount;
|
|
|
|
public FixedList128Bytes<float> SpawnCooldown;
|
|
}
|
|
} |