mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2025-10-30 12:57:11 +01:00
productionobjects
This commit is contained in:
22
Assets/Scripts/ProductionObjects/IOPort.cs
Normal file
22
Assets/Scripts/ProductionObjects/IOPort.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user