mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-11-04 06:28:59 +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;
 | 
						|
    }
 | 
						|
 | 
						|
}
 |