mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2025-10-30 04:47:12 +01:00
22 lines
328 B
C#
22 lines
328 B
C#
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)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
} |