mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 20:20:56 +00:00
14 lines
99 B
C++
14 lines
99 B
C++
#pragma once
|
|
|
|
namespace DataTypes
|
|
{
|
|
|
|
class EnemyData
|
|
{
|
|
public:
|
|
int Hash;
|
|
int Health;
|
|
|
|
};
|
|
|
|
} |