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/main.cpp

31 lines
381 B

2 years ago
#define OLC_PGE_APPLICATION
#include "pixelGameEngine.h"
class Meteos : public olc::PixelGameEngine
2 years ago
{
public:
Meteos()
2 years ago
{
sAppName = "Meteos";
2 years ago
}
bool OnUserCreate() override
{
2 years ago
return true;
}
bool OnUserUpdate(float fElapsedTime) override
{
2 years ago
return true;
}
};
int main()
{
Meteos game;
if (game.Construct(256, 240, 4, 4))
game.Start();
2 years ago
return 0;
}