mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-10-31 21:27:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| 
 | |
| public class HouseBuildingScript : Building
 | |
| {
 | |
|     private void Start()
 | |
|     {
 | |
|         title = "House";
 | |
|         description = "A place to live in";
 | |
|         buildingType = BuildingType.Housing;
 | |
|     }
 | |
| 
 | |
| }
 | 
