mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-08 17:57:02 +08:00
10 lines
115 B
C++
10 lines
115 B
C++
#pragma once
|
|
|
|
namespace Cubed {
|
|
|
|
struct Health {
|
|
float hp = 20;
|
|
float max_hp = 20;
|
|
};
|
|
|
|
} // namespace Cubed
|