tiny_link/src/game.h

24 lines
281 B
C
Raw Normal View History

2021-01-03 05:51:50 +08:00
#pragma once
#include <blah.h>
#include "world.h"
using namespace Blah;
namespace TL
{
class Game
{
public:
World world;
FrameBufferRef buffer;
Batch batch;
void startup();
void shutdown();
void update();
void render();
2021-01-03 08:20:01 +08:00
private:
bool m_draw_colliders;
2021-01-03 05:51:50 +08:00
};
}