This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
revival-survival/Assets/Scripts/AttackBehaviorMelee.cs
2018-07-02 20:49:00 -05:00

19 lines
No EOL
285 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AttackBehaviorMelee : MonoBehaviour {
Controller controller;
// Use this for initialization
void Start ()
{
controller = GetComponent<Controller> ();
}
void Update()
{
//
}
}