mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-08 08:17:41 +01:00
14 lines
189 B
C++
14 lines
189 B
C++
#ifdef WINDOWS
|
|
|
|
#include "sim_local.h"
|
|
#include <vector>
|
|
|
|
class TextureManager {
|
|
std::vector<class Texture2D *> loaded;
|
|
|
|
public:
|
|
Texture2D *registerTexture(const char *fname);
|
|
};
|
|
|
|
#endif
|