Moved mario global state vars in to struct
This commit is contained in:
@@ -1,7 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "decomp/include/PR/ultratypes.h"
|
||||
#include "libsm64.h"
|
||||
|
||||
struct SurfaceObjectTransform
|
||||
{
|
||||
float aPosX, aPosY, aPosZ;
|
||||
float aVelX, aVelY, aVelZ;
|
||||
|
||||
s16 aFaceAnglePitch;
|
||||
s16 aFaceAngleYaw;
|
||||
s16 aFaceAngleRoll;
|
||||
|
||||
s16 aAngleVelPitch;
|
||||
s16 aAngleVelYaw;
|
||||
s16 aAngleVelRoll;
|
||||
};
|
||||
|
||||
extern struct Surface *loaded_surface_get_at_index( uint32_t index );
|
||||
extern uint32_t loaded_surface_get_count();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user