aboutsummaryrefslogtreecommitdiff
path: root/game/tile.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/tile.h')
-rw-r--r--game/tile.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/game/tile.h b/game/tile.h
index 3b83531..64e9132 100644
--- a/game/tile.h
+++ b/game/tile.h
@@ -11,11 +11,11 @@ class Tile {
Tile() {}
std::string name;
- int move_cost;
- int sight_cost;
- int range_bonus;
- float attack_bonus;
- float defence_bonus;
+ int move_cost { 1 };
+ int sight_cost { 1 };
+ int range_bonus { 0 };
+ float attack_bonus { 0 };
+ float defence_bonus { 0 };
vec2 spritebounds;
};