mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-08-04 08:58:50 -04:00
14 lines
236 B
C
14 lines
236 B
C
#include <ultra64.h>
|
|
#include "constants.h"
|
|
#include "game/race.h"
|
|
#include "game/chr.h"
|
|
#include "bss.h"
|
|
#include "data.h"
|
|
#include "types.h"
|
|
|
|
void racesInit(void)
|
|
{
|
|
modelSetVtxAllocatorFunc(&chrAllocateVertices);
|
|
raceInitAnims();
|
|
}
|