Created
September 30, 2018 21:23
-
-
Save justlev/75c1b1f0ca433072eea0e2de8e9b9624 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; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class InventoryBehaviour : MonoBehaviour, IInventory { | |
public string Id { get; private set; } | |
public InventoryTypes InventoryType { get; private set; } | |
public IEnumerable<IItem> Items { get; private set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment