mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 04:27:09 +01:00
14 lines
202 B
C#
14 lines
202 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class WarehouseBuilding : StorageBuilding
|
|
{
|
|
|
|
private void Start()
|
|
{
|
|
inventorySpace = 500;
|
|
}
|
|
|
|
}
|