Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/src/goddard/skin.h
7858 views
1
#ifndef GD_SKIN_H
2
#define GD_SKIN_H
3
4
#include <PR/ultratypes.h>
5
6
#include "gd_types.h"
7
8
// bss
9
extern struct ObjNet* gGdSkinNet; // @ 801BAAF0
10
11
// functions
12
void reset_net(struct ObjNet *net);
13
struct ObjNet *make_net(UNUSED s32 a0, struct ObjShape *shapedata, struct ObjGroup *a2,
14
struct ObjGroup *a3, struct ObjGroup *a4);
15
void convert_net_verts(struct ObjNet *net);
16
void move_nets(struct ObjGroup *group);
17
void func_80193848(struct ObjGroup *group);
18
void reset_net_count(void);
19
20
#endif // GD_SKIN_H
21
22