Skip to content

Instantly share code, notes, and snippets.

@GarethOates
Last active January 27, 2020 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GarethOates/d10de0c41d5d9be4e6ec4e45ce8b29a9 to your computer and use it in GitHub Desktop.
Save GarethOates/d10de0c41d5d9be4e6ec4e45ce8b29a9 to your computer and use it in GitHub Desktop.
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