Cannot go through walls anymore
Planar movement inside the maze Fixed orientation
This commit is contained in:
parent
165524cc11
commit
dfe279b236
6 changed files with 92 additions and 51 deletions
15
src/TileTypes.h
Normal file
15
src/TileTypes.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
//
|
||||
// Created by trotFunky on 03/11/2019.
|
||||
//
|
||||
|
||||
#ifndef LABYRINTHE_TILETYPES_H
|
||||
#define LABYRINTHE_TILETYPES_H
|
||||
|
||||
#include "Math/Vectors.h"
|
||||
|
||||
static const Vec3i path{255,255,255};
|
||||
static const Vec3i wall{0,0,0};
|
||||
static const Vec3i end{0,255,0};
|
||||
static const Vec3i objective{0,0,255};
|
||||
|
||||
#endif //LABYRINTHE_TILETYPES_H
|
Loading…
Add table
Add a link
Reference in a new issue