mirror of
https://github.com/ConjureETS/VZ.git
synced 2026-03-24 02:11:15 +00:00
- Added Class ZombieUnit (extends the Unit class) - Added class VampireUnit (extends the Unit class)
19 lines
211 B
C#
19 lines
211 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Command : MonoBehaviour
|
|
{
|
|
|
|
// Use this for initialization
|
|
void Start ()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update ()
|
|
{
|
|
|
|
}
|
|
}
|