all repos — RPG @ 2c47b59ca4f9a2bb3bef127052e434f0c5c48cfa

Fully functional 3D turn based role playing game coded in C# and base Unity.

Assets/Scripts/Utility/Action.cs (view raw)

1[System.Serializable]
2public abstract class Action
3{
4    public abstract string Execute(Fighter source, Fighter target, out bool output);
5    public abstract string ExecuteSafe(Fighter source, Fighter target, out bool output);
6    public abstract string GetDescription();
7}