Skip to content

Instantly share code, notes, and snippets.

@justlev
Created September 30, 2018 21:21
Show Gist options
  • Save justlev/79856d3ea6e42a42234d10d5e203e8a7 to your computer and use it in GitHub Desktop.
Save justlev/79856d3ea6e42a42234d10d5e203e8a7 to your computer and use it in GitHub Desktop.
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