ref #105 Fixing: changed distance new objects.

This commit is contained in:
IgorekLoschinin 2021-09-21 21:58:03 +03:00
parent 6a59445b2e
commit f7131f1677
2 changed files with 8 additions and 0 deletions

View File

@ -16,4 +16,8 @@ Ground::Ground() : CRAWL::GroundClaster("JungelGroud") {
unsigned int Ground::itemsCount() const {
return 3;
}
int Ground::newObjectDistance() const {
return 150;
}
}

View File

@ -21,6 +21,10 @@ class Ground : public CRAWL::GroundClaster
public:
Ground();
unsigned int itemsCount() const override;
// GroundClaster interface
protected:
int newObjectDistance() const;
};
}