feat: add combat and deleveling AI
This commit is contained in:
21
Client/Domain/AI/AIInterface.cs
Normal file
21
Client/Domain/AI/AIInterface.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Client.Domain.Events;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Client.Domain.AI
|
||||
{
|
||||
public interface AIInterface
|
||||
{
|
||||
Task Update();
|
||||
|
||||
void Toggle();
|
||||
|
||||
bool IsEnabled { get; }
|
||||
|
||||
TypeEnum Type { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user