mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2026-07-31 14:59:02 +02:00
13 lines
218 B
C#
13 lines
218 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public abstract class Building : MonoBehaviour
|
|
{
|
|
|
|
public abstract string GetTitle();
|
|
public abstract string GetDescription();
|
|
|
|
|
|
}
|