summaryrefslogtreecommitdiff
path: root/Erika/Assets/Scripts/Unit/Components/UnitPhysicsBox/UnitHurtBox.cs
blob: 6db01ecf8985d92e1879ed6d0dcd1a739e467168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class UnitHurtBox : UnitPhysicsBox
{

    [SerializeField] private List<Collider> m_Colliders;

    public override EPhysicsBoxType boxType { get { return EPhysicsBoxType.HurtBox; } } 

}