forked from KolibriOS/kolibrios
abebbdd698
git-svn-id: svn://kolibrios.org@8557 a494cfbc-eb01-0410-851d-a64ba20cac60
21 lines
381 B
C
Executable File
21 lines
381 B
C
Executable File
#ifndef _WL_ATMOS_H_
|
|
#define _WL_ATMOS_H_
|
|
|
|
#if defined(USE_STARSKY) || defined(USE_RAIN) || defined(USE_SNOW)
|
|
void Init3DPoints();
|
|
#endif
|
|
|
|
#ifdef USE_STARSKY
|
|
void DrawStarSky(byte *vbuf, uint32_t vbufPitch);
|
|
#endif
|
|
|
|
#ifdef USE_RAIN
|
|
void DrawRain(byte *vbuf, uint32_t vbufPitch);
|
|
#endif
|
|
|
|
#ifdef USE_SNOW
|
|
void DrawSnow(byte *vbuf, uint32_t vbufPitch);
|
|
#endif
|
|
|
|
#endif
|