mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-22 07:55:41 -04:00
22 lines
709 B
C
22 lines
709 B
C
#ifndef _IN_GAME_WEATHER_H
|
|
#define _IN_GAME_WEATHER_H
|
|
#include <ultra64.h>
|
|
#include "types.h"
|
|
|
|
u32 weatherRender(void);
|
|
void weatherSetBoundaries(struct weatherparticledata *data, s32 index, f32 min, f32 max);
|
|
struct weatherparticledata *weatherAllocateParticles(void);
|
|
void func0f131610(struct weatherdata *weather);
|
|
void func0f131678(s32 arg0);
|
|
void weatherSetIntensity(s32 intensity);
|
|
void weatherTickRain(struct weatherdata *weather);
|
|
void weatherTickSnow(struct weatherdata *weather);
|
|
void weatherConfigureRain(u32 intensity);
|
|
void weatherConfigureSnow(u32 intensity);
|
|
bool weatherIsRoomWeatherProof(u32 param_1);
|
|
u32 weatherRenderRain(void);
|
|
u32 weatherRenderSnow(void);
|
|
void weatherFree(void);
|
|
|
|
#endif
|