mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-16 06:25:33 -04:00
14 lines
356 B
C
14 lines
356 B
C
#ifndef IN_GAME_SHARDS_H
|
|
#define IN_GAME_SHARDS_H
|
|
#include <ultra64.h>
|
|
#include "data.h"
|
|
#include "types.h"
|
|
|
|
void shardsCreate(struct coord *pos, f32 *rotx, f32 *roty, f32 *rotz, f32 xmin, f32 xmax, f32 ymin, f32 ymax, s32 type, struct prop *prop);
|
|
void shardsReset(void);
|
|
Gfx *shardsRender(Gfx *gdl);
|
|
void shardsStop(void);
|
|
void shardsTick(void);
|
|
|
|
#endif
|