mirror of
https://github.com/ConjureETS/VZ.git
synced 2026-03-24 02:11:15 +00:00
- Updated .gitignore (added thumbs.db.meta and UnityVS project folder) - Added class Unit (not finish) - Added class Command (not finish)
19 lines
217 B
C#
19 lines
217 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 ()
|
|
{
|
|
|
|
}
|
|
}
|