Skip to content

Commit

Permalink
int then
Browse files Browse the repository at this point in the history
  • Loading branch information
cryham committed May 11, 2024
1 parent 9abfd82 commit 6d1a25e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/common/data/SceneClasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class SCollect // 💎 Collectible gem
{
public:
std::string name; // for presets n
uint group = 0; // game xml set(s)
int group = 0; // game xml set(s)

Ogre::Vector3 pos{0,0,0};
float scale = 1.f;
Expand All @@ -212,13 +212,13 @@ class SCollect // 💎 Collectible gem
// game var
bool collected =0;

// special ..
// todo: special ..
// float timeGood; // appears back after
};
class QCollect // only 💎 quick load
{
public:
uint group = 0;
int group = 0;
// bool collected =0;
};

Expand Down
2 changes: 1 addition & 1 deletion src/game/data/CollectXml.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Collection
CAllowed cars;

std::string track = "Jng1-Curly";
uint groups = 15; // collectibles group mask, if more
int groups = 15; // collectibles group mask, if more
// e.g. 1 easy 2 medium 3=1+2 4 hard 6=4+2 etc

//collectibles from track's scene.xml
Expand Down

0 comments on commit 6d1a25e

Please sign in to comment.