Updated Building.cs

This commit is contained in:
DerTyp187
2021-09-30 08:41:59 +02:00
parent 2dbed6bdc0
commit 99830d476f
9 changed files with 44 additions and 27 deletions

View File

@@ -3,17 +3,11 @@ 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.";
{
private void Start()
{
title = "House";
description = "A place to live in";
}
public override string GetTitle()
{
return title;
}
public override string GetDescription()
{
return description;
}
}