mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
19 lines
331 B
C++
19 lines
331 B
C++
#include <boost/chrono.hpp>
|
|
|
|
#include "bitmap.h"
|
|
//помойка ебаная
|
|
inline boost::chrono::high_resolution_clock::time_point startTime;
|
|
|
|
class Sunshine{
|
|
public:
|
|
Sunshine();
|
|
|
|
const char* noisePath = "Graphics/Misc/noise";
|
|
|
|
Bitmap* noiseBitmap;
|
|
|
|
void loadNoise();
|
|
|
|
private:
|
|
bool noiseLoaded = false;
|
|
};
|