22 lines
241 B
C#
22 lines
241 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Building : Ally
|
|
{
|
|
|
|
|
|
|
|
public override void Start()
|
|
{
|
|
base.Start();
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
//do something
|
|
|
|
}
|
|
|
|
}
|