tiny_link/src/game.h

21 lines
245 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();
};
}