19 lines
No EOL
285 B
C#
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()
|
|
{
|
|
//
|
|
}
|
|
} |