Created
September 30, 2018 21:21
-
-
Save justlev/79856d3ea6e42a42234d10d5e203e8a7 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.Collections.Generic; | |
public enum InventoryTypes | |
{ | |
Medic, | |
Weaponary, | |
Bartender | |
} | |
public interface IInventory | |
{ | |
string Id { get; } | |
InventoryTypes InventoryType { get; } | |
IEnumerable<IItem> Items { get; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment