all repos — RPG @ 9a9528c6bffc34089550b5e8fb4c5a1c4754c8cf

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}