mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-12 03:33:00 +00:00
fixed some compiler errors
This commit is contained in:
26
classes.cpp
26
classes.cpp
@@ -1605,18 +1605,18 @@ vector<eLand> randlands = {
|
||||
};
|
||||
|
||||
geometryinfo ginf[gGUARD] = {
|
||||
{"standard", "HR", 7, 3, 0, 0, {7, 5}},
|
||||
{"Euclidean", "euclid", 6, 3, 0, 1, {7, FORBIDDEN}},
|
||||
{"spherical", "sphere", 5, 3, 0, 2, {SEE_ALL, SEE_ALL}},
|
||||
{"elliptic", "elliptic", 5, 3, qELLIP, 2, {SEE_ALL, SEE_ALL}},
|
||||
{"Zebra quotient", "Zebra", 7, 3, qZEBRA, 0, {7, 5}},
|
||||
{"field quotient", "field", 7, 3, qFIELD, 0, {7, 5}},
|
||||
{"torus", "torus", 6, 3, qTORUS, 1, {7, FORBIDDEN}},
|
||||
{"octagons", "oct", 8, 3, 0, 0, {6, 4}},
|
||||
{"four pentagons", "4x5", 5, 4, 0, 0, {6, 4}},
|
||||
{"four hexagons", "4x6", 6, 4, 0, 0, {5, 3}},
|
||||
{"four heptagons", "4x7", 7, 4, 0, 0, {4, 3}},
|
||||
{"cube", "3x4", 4, 3, 0, 2, {SEE_ALL, SEE_ALL}},
|
||||
{"tetrahedron (buggy)", "3x3", 3, 3, 0, 2, {SEE_ALL, SEE_ALL}},
|
||||
{"standard", "HR", 7, 3, 0, 0, {{7, 5}}},
|
||||
{"Euclidean", "euclid", 6, 3, 0, 1, {{7, FORBIDDEN}}},
|
||||
{"spherical", "sphere", 5, 3, 0, 2, {{SEE_ALL, SEE_ALL}}},
|
||||
{"elliptic", "elliptic", 5, 3, qELLIP, 2, {{SEE_ALL, SEE_ALL}}},
|
||||
{"Zebra quotient", "Zebra", 7, 3, qZEBRA, 0, {{7, 5}}},
|
||||
{"field quotient", "field", 7, 3, qFIELD, 0, {{7, 5}}},
|
||||
{"torus", "torus", 6, 3, qTORUS, 1, {{7, FORBIDDEN}}},
|
||||
{"octagons", "oct", 8, 3, 0, 0, {{6, 4}}},
|
||||
{"four pentagons", "4x5", 5, 4, 0, 0, {{6, 4}}},
|
||||
{"four hexagons", "4x6", 6, 4, 0, 0, {{5, 3}}},
|
||||
{"four heptagons", "4x7", 7, 4, 0, 0, {{4, 3}}},
|
||||
{"cube", "3x4", 4, 3, 0, 2, {{SEE_ALL, SEE_ALL}}},
|
||||
{"tetrahedron (buggy)", "3x3", 3, 3, 0, 2, {{SEE_ALL, SEE_ALL}}},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user