aboutsummaryrefslogtreecommitdiff
path: root/backend/WeaponObject.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-01 10:18:22 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-01 10:18:22 +0100
commit798948dbe6f012e194f053c4e862cf697f30b793 (patch)
tree32c71420d1188f98cfb41b6f0d9536c5fa4bf5a7 /backend/WeaponObject.h
parentd7012045bb61f117fb7b9c51ddd03e4c54f25fe6 (diff)
more WIP (move some Player things to backend)
Diffstat (limited to 'backend/WeaponObject.h')
-rw-r--r--backend/WeaponObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/WeaponObject.h b/backend/WeaponObject.h
index 5ac4f87..032ac15 100644
--- a/backend/WeaponObject.h
+++ b/backend/WeaponObject.h
@@ -13,8 +13,8 @@ public:
virtual const String & get_displayname() const;
private:
- int damage_min;
- int damage_max;
+ int damage_min = 0;
+ int damage_max = 0;
};