Last active
April 17, 2020 03:25
-
-
Save smkplus/c45b2030867cc51660ae0438da19adac 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
interface IWitchAbilities | |
{ | |
void Hex(); | |
void Heal(); | |
void Disappear(); | |
void Fire(); | |
void Ice(); | |
void Poison(); | |
} | |
interface IPriestAbilities | |
{ | |
void Heal(); | |
void Fire(); | |
} | |
interface IFrostMageAbilities | |
{ | |
void Ice(); | |
} | |
public class Witch : IWitchAbilities | |
{ | |
public void Hex(){} | |
public void Heal(){} | |
public void Disappear(){} | |
public void Fire(){} | |
public void Ice(){} | |
public void Poison(){} | |
} | |
public class Priest : IPriestAbilities | |
{ | |
public void Heal(){} | |
public void Fire(){} | |
} | |
public class FrostMage : IFrostMageAbilities | |
{ | |
public void Ice(){} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment