productionobjects

This commit is contained in:
Janis
2022-06-06 20:11:12 +02:00
parent e3b7ecb3b9
commit 5a88a3cca3
5 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System.Collections.Generic;
using UnityEngine;
public class IOPort : MonoBehaviour
{
public bool isInput;
public ItemSO item;
public int itemCount = 0;
private int maxItemCount = 100;
public void IncreaseItemCount(int value)
{
}
public void DecreaseItemCount(int value)
{
}
}