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