mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 20:20:56 +00:00
16 lines
167 B
C++
16 lines
167 B
C++
#pragma once
|
|
#include "EnemyData.h"
|
|
#include <vector>
|
|
|
|
using namespace DataTypes;
|
|
|
|
namespace DTO
|
|
{
|
|
|
|
class EnemyDTO
|
|
{
|
|
public:
|
|
std::vector<EnemyData> Health;
|
|
};
|
|
|
|
} |