moved from h4570/tyra
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
# ______ ____ ___
|
||||
# | \/ ____| |___|
|
||||
# | | | \ | |
|
||||
#-----------------------------------------------------------------------
|
||||
# Copyright 2020, tyra - https://github.com/h4570/tyra
|
||||
# Licenced under Apache License 2.0
|
||||
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef _FLOORS_
|
||||
#define _FLOORS_
|
||||
|
||||
#include <tamtypes.h>
|
||||
#include <game.hpp>
|
||||
#include <engine.hpp>
|
||||
#include "managers/floor_manager.hpp"
|
||||
#include "managers/light_manager.hpp"
|
||||
#include "objects/player.hpp"
|
||||
#include "./camera.hpp"
|
||||
|
||||
class Floors : public Game
|
||||
{
|
||||
|
||||
public:
|
||||
Floors();
|
||||
~Floors();
|
||||
|
||||
void onInit();
|
||||
void onUpdate();
|
||||
|
||||
Engine engine;
|
||||
|
||||
private:
|
||||
LightManager lightManager;
|
||||
FloorManager *floorManager;
|
||||
Player *player;
|
||||
Camera *camera;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user