1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-11 12:10:15 +00:00

added Football and Dark Rainbow to predesigned patterns

This commit is contained in:
Zeno Rogue
2017-04-04 11:19:39 +02:00
parent 645a64e8c9
commit 499d4cc025
2 changed files with 7 additions and 3 deletions

View File

@@ -115,12 +115,10 @@ struct celllister {
// -- hrmap ---
#include <typeinfo>
struct hrmap {
virtual heptagon *getOrigin() { return NULL; }
virtual cell *gamestart() { return getOrigin()->c7; }
virtual ~hrmap() { printf("removing %s\n", typeid(this).name()); };
virtual ~hrmap() { };
virtual vector<cell*>& allcells() { return dcal; }
virtual void verify() { }
};