19 lines
292 B
C#
19 lines
292 B
C#
|
|
namespace Gameplay.Character
|
|||
|
|
{
|
|||
|
|
public class CharacterFightData
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public Character owner;
|
|||
|
|
|
|||
|
|
public int moraleRecover;
|
|||
|
|
|
|||
|
|
public int moveShootType;
|
|||
|
|
|
|||
|
|
public CharacterFightData(Character owner)
|
|||
|
|
{
|
|||
|
|
this.owner = owner;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|