This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/AI/IMobState.cs
2015-07-02 22:46:20 -06:00

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);
}
}