Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/src/goddard/particles.h
7858 views
1
#ifndef GD_PARTICLES_H
2
#define GD_PARTICLES_H
3
4
#include <PR/ultratypes.h>
5
6
#include "gd_types.h"
7
8
// functions
9
void func_801823A0(struct ObjNet *net);
10
struct ObjParticle *make_particle(u32 a, s32 b, f32 x, f32 y, f32 z);
11
void move_particles_in_grp(struct ObjGroup *group);
12
13
#endif // GD_PARTICLES_H
14
15