mirror of
https://github.com/NoelFB/tiny_link.git
synced 2025-04-05 00:39:18 +08:00
21 lines
245 B
C
21 lines
245 B
C
|
#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();
|
||
|
};
|
||
|
}
|