Last active
January 27, 2020 18:22
-
-
Save GarethOates/d10de0c41d5d9be4e6ec4e45ce8b29a9 to your computer and use it in GitHub Desktop.
Revisions
-
Gareth Oates revised this gist
Jan 27, 2020 . 1 changed file with 8 additions and 7 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,11 @@ using System; namespace MagicTheProgramming { public interface ICreature { int Power {get;} int Toughness {get;} string Name {get;} } } -
Gareth Oates created this gist
Jan 27, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ namespace MagicTheProgramming { public interface ICreature { int Power {get; set;} int Toughness {get; set;} string Name {get; set;} } }