Need to add multiple characters. need a way to select a target. need a team concept so you can't target friendlies. need an ability system. need Kenny art
12 lines
144 B
C#
12 lines
144 B
C#
using System;
|
|
|
|
public class EnemyAi
|
|
{
|
|
public Action AttackCallback;
|
|
|
|
public void TakeTurn()
|
|
{
|
|
AttackCallback();
|
|
}
|
|
}
|