Skip to content

Instantly share code, notes, and snippets.

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