10 lines
205 B
C#
10 lines
205 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IAgentSourceEntity : IEntity
|
|
{
|
|
float SpawnCooldown { get; }
|
|
|
|
ref AgentSourceState GetAgentSourceStateRW();
|
|
}
|
|
}
|