You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
321 B
13 lines
321 B
#ifndef H3ELEMENT_H |
|
#define H3ELEMENT_H |
|
|
|
#include "../../graphics/opengl/components/Component.h" |
|
#include "../../graphics/opengl/components/TextComponent.h" |
|
#include "../Node.h" |
|
|
|
class H3Element { |
|
public: |
|
static std::unique_ptr<Component> render(const Node &node, int y, int windowWidth, int windowHeight); |
|
}; |
|
|
|
#endif |