mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
11 lines
No EOL
209 B
C++
11 lines
No EOL
209 B
C++
#include "sunshine.h"
|
|
|
|
Sunshine::Sunshine() {}
|
|
|
|
void Sunshine::loadNoise()
|
|
{
|
|
if(!noiseLoaded){
|
|
Sunshine::noiseBitmap = new Bitmap(Sunshine::noisePath);
|
|
noiseLoaded = true;
|
|
}
|
|
} |