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

19 lines
285 B
C#
Raw Normal View History

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()
{
//
}
}