mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 04:27:09 +01:00
20 lines
430 B
C#
20 lines
430 B
C#
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;
|
|
}
|
|
}
|