12 lines
228 B
C#
12 lines
228 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class WeaponDefalult : MonoBehaviour
|
|
{
|
|
[SerializeField] private PlayerAction _defaultWeapon;
|
|
private PlayerState _playState;
|
|
}
|
|
|
|
|