mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 12:37:08 +01:00
14 lines
235 B
C#
14 lines
235 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";
|
|
}
|
|
|
|
}
|