L2Bot2.0/Client/Domain/AI/AIInterface.cs
2024-08-15 17:23:24 +02:00

22 lines
360 B
C#

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