Merge branch 'develop' of github.com:AnonymusRaccoon/Bomberman into opti

This commit is contained in:
Clément Le Bihan
2021-06-17 17:01:26 +02:00
11 changed files with 138 additions and 13 deletions
+2 -1
View File
@@ -52,11 +52,12 @@ namespace BBM
// interact with bombs & stop the explosion
constexpr const char Blowable[] = "Blowable";
// interact with visual features like camera
constexpr const char Player[] = "Player";
constexpr const char Unbreakable[] = "Unbreakable";
constexpr const char Breakable[] = "Breakable";
constexpr const char Hole[] = "Hole";
constexpr const char Bumper[] = "Bumper";
constexpr const char Player[] = "Player";
// interact with bombs (getting damage etc) but doesn't stop explosion
constexpr const char BlowablePass[] = "BlowablePass";
}