Attempt #7?!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Meteos/Meteos.h

25 lines
653 B

#ifndef METEOS_H
#define METEOS_H
#include "pixelGameEngine.h"
#include "Board.h"
#include <random>
class Meteos : public olc::PixelGameEngine{
public:
Meteos(){
sAppName="Meteos";
}
float lastBlockSpawn=0.0f;
float accumulatedTime=0.0f;
std::uniform_int_distribution<> randBlockPos,coinFlip;
std::mt19937 gen;
Board gameBoard;
bool gameCanRun=true;
std::map<std::string,Renderable> SPRITES;
bool OnUserCreate()override;
void updateGame(float fElapsedTime);
void handleInput();
void drawGame(float fElapsedTime,bool debugView);
bool OnUserUpdate(float fElapsedTime)override;
};
#endif