ChrisTutorials

PlayerInventory

Jan 9th, 2022 (edited)
616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class PlayerInventory : MonoBehaviour, IInventory
  6. {
  7.     public int Money { get => money; set => money = value; }
  8.  
  9.     public int money = 0;
  10. }
  11.  
Add Comment
Please, Sign In to add comment