NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Character/Data/CharacterFightData.cs

19 lines
292 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
namespace Gameplay.Character
{
public class CharacterFightData
{
public Character owner;
public int moraleRecover;
public int moveShootType;
public CharacterFightData(Character owner)
{
this.owner = owner;
}
}
}