summaryrefslogtreecommitdiff
path: root/themes/src/winter/WinterTheme.hpp
blob: 5ba6d94c160280409b2bf63f678cccb8bffb7e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef WINTER_THEME_HPP
#define WINTER_THEME_HPP

#include "Snowflake.h"
#include "../types.h"
#include "../theme.h"
#include "../Renderer2d.h"

struct WebglContext;

struct WinterTheme : public Theme {
public:
    WinterTheme(WebglContext*);
    ~WinterTheme();
	SnowflakeParticleRenderer spr;
	
	void load();
	void update(f32 dtSeconds);
	void render();
	void unload();
private:
    Renderer2d renderer;
};

#endif