diff options
Diffstat (limited to 'sim/include')
-rw-r--r-- | sim/include/kurator/sim/HitPoints.h | 17 | ||||
-rw-r--r-- | sim/include/kurator/sim/components.h | 6 |
2 files changed, 17 insertions, 6 deletions
diff --git a/sim/include/kurator/sim/HitPoints.h b/sim/include/kurator/sim/HitPoints.h new file mode 100644 index 0000000..20cffc2 --- /dev/null +++ b/sim/include/kurator/sim/HitPoints.h @@ -0,0 +1,17 @@ +#pragma once + + +namespace kurator +{ +namespace sim +{ + + +struct HitPoints +{ + double health; +}; + + +} // namespace sim +} // namespace kurator diff --git a/sim/include/kurator/sim/components.h b/sim/include/kurator/sim/components.h index 34b0f93..f4f1799 100644 --- a/sim/include/kurator/sim/components.h +++ b/sim/include/kurator/sim/components.h @@ -33,11 +33,5 @@ struct AIState }; -struct HitPoints -{ - double health; -}; - - } // namespace sim } // namespace kurator |