mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 12:37:08 +01:00
13 lines
222 B
C#
13 lines
222 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public abstract class Building : MonoBehaviour
|
|
{
|
|
|
|
public abstract string GetTitle();
|
|
public abstract string GetDescription();
|
|
|
|
|
|
}
|