mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-10-30 20:47:08 +01:00 
			
		
		
		
	updated building.cs, buildingContruction.cs, buildingBlueprint.cs
This commit is contained in:
		
							
								
								
									
										18
									
								
								Assets/Scripts/Building/House/HouseBuildingScript.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								Assets/Scripts/Building/House/HouseBuildingScript.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| using System.Collections; | ||||
| using System.Collections.Generic; | ||||
| using UnityEngine; | ||||
|  | ||||
| public class HouseBuildingScript : Building | ||||
| { | ||||
|     [SerializeField] private string title = "House"; | ||||
|     [SerializeField] private string description = "A place for people to live in."; | ||||
|  | ||||
|     public override string GetTitle() | ||||
|     { | ||||
|         return title; | ||||
|     } | ||||
|     public override string GetDescription() | ||||
|     { | ||||
|         return description; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 DerTyp187
					DerTyp187