Created
September 30, 2018 21:21
-
-
Save justlev/41b510051ade402238c6e3d8de46b26f 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
public enum MerchantRaces | |
{ | |
Khajit, | |
Dragonborn, | |
Dogjit, | |
CheeseEat | |
} | |
public interface IMerchant { | |
string Id { get; } | |
string Name { get; } | |
MerchantRaces Race { get; } | |
IInventory Inventory { get; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment