mirror of
https://github.com/ConjureETS/VZ.git
synced 2026-03-24 10:21:14 +00:00
33 lines
447 B
C#
33 lines
447 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class CharacterMovement : MonoBehaviour {
|
|
|
|
public int player;
|
|
|
|
public MovementManager mm;
|
|
|
|
enum direction { up = "Up",down = "Down", left = "Left", right = "Right", stop = "Stop" };
|
|
|
|
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
|
|
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
|
|
}
|
|
|
|
public void UpdateDirection()
|
|
{
|
|
|
|
|
|
|
|
}
|
|
}
|