mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
23 lines
328 B
C#
23 lines
328 B
C#
namespace BOTWM.Server.DTO
|
|
{
|
|
|
|
public class EnemyData
|
|
{
|
|
|
|
public int Hash;
|
|
public int Health;
|
|
|
|
public EnemyData(int hash, int health)
|
|
{
|
|
Hash = hash;
|
|
Health = health;
|
|
}
|
|
|
|
}
|
|
|
|
public class EnemyDTO
|
|
{
|
|
public List<EnemyData> Health;
|
|
}
|
|
}
|