aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/game.h
blob: 7cde954ee27b69be103982e136c590d2ce920f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once


#include "api/spritesheet.h"
#include "facade/Texture.h"
#include <vector>

class game {

public:
	game(){}
	~game(){}

	void render(std::vector<crepe::Texture*>&, std::vector<crepe::api::Spritesheet*>&);
};