mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-29 12:22:07 +01:00
16 lines
288 B
C#
16 lines
288 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class WarehouseBuilding : StorageBuilding
|
|
{
|
|
|
|
private void Start()
|
|
{
|
|
title = "Warehouse";
|
|
description = "A place to store your resources";
|
|
inventorySpace = 500;
|
|
}
|
|
|
|
}
|