blob: 012c6fde1690bcbcf21442dc669f9cb5aa170bc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef SYSTEM_RENDER_HPP_
#define SYSTEM_RENDER_HPP_
#include <entityx/entityx.h>
#include <texture.hpp>
#include <string>
class RenderSystem : public entityx::System<RenderSystem> {
private:
static std::string loadTexString;
static Texture loadTexResult;
public:
static Texture loadTexture(const std::string& file);
static void render(void);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
};
#endif // SYSTEM_RENDER_HPP_
|