all repos — RPG @ 635cf61678575e3f47cc5b2675b37af8d9824f1c

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}