Last active
January 27, 2020 18:22
-
-
Save GarethOates/d10de0c41d5d9be4e6ec4e45ce8b29a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace MagicTheProgramming | |
{ | |
public interface ICreature | |
{ | |
int Power {get;} | |
int Toughness {get;} | |
string Name {get;} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment