24 lines
498 B
C#
24 lines
498 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace GeometryTD.Definition
|
|
{
|
|
[StructLayout(LayoutKind.Auto)]
|
|
public struct ImpactData
|
|
{
|
|
public ImpactData(CampType camp, int hp, int attack, int defense)
|
|
{
|
|
Camp = camp;
|
|
HP = hp;
|
|
Attack = attack;
|
|
Defense = defense;
|
|
}
|
|
|
|
public CampType Camp { get; }
|
|
|
|
public int HP { get; }
|
|
|
|
public int Attack { get; }
|
|
|
|
public int Defense { get; }
|
|
}
|
|
} |