mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-10-31 05:07:08 +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;
 | |
|     }
 | |
| 
 | |
| }
 | 
