11 lines
213 B
C#
11 lines
213 B
C#
using System;
|
|
using TrueCraft.API.Server;
|
|
using TrueCraft.API.Entities;
|
|
|
|
namespace TrueCraft.API.AI
|
|
{
|
|
public interface IMobState
|
|
{
|
|
void Update(IMobEntity entity, IEntityManager manager);
|
|
}
|
|
} |