2024-12-19 19:21:36 +00:00
|
|
|
using System;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class PlayerAttack : MonoBehaviour
|
|
|
|
{
|
|
|
|
private InputManager _inputManager;
|
|
|
|
private LayerMask _enemyLayermask;
|
2024-12-20 15:51:03 +00:00
|
|
|
public void initialize(LayerMask enemyLayermask)
|
2024-12-19 19:21:36 +00:00
|
|
|
{
|
|
|
|
_enemyLayermask = enemyLayermask;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Attack()
|
|
|
|
{
|
2024-12-20 15:51:03 +00:00
|
|
|
|
2024-12-19 19:21:36 +00:00
|
|
|
}
|
|
|
|
}
|