mirror of
https://github.com/zeldaret/st
synced 2026-05-25 07:23:03 -04:00
66ad81ba15
* move nitro headers to libs/nitro/include and setup sbc.c Co-authored-by: enzofc708 <47937189+enzofc708@users.noreply.github.com> * sbc.c 95% * move sbc in the right folder (and fix a warning) * revert formating changes --------- Co-authored-by: enzofc708 <47937189+enzofc708@users.noreply.github.com>
19 lines
396 B
C++
19 lines
396 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
#include <nitro/math.h>
|
|
|
|
// incomplete
|
|
class PlayerActor {
|
|
public:
|
|
/* 00 */ Vec3p mPos;
|
|
/* 0C */ Vec3p mPrevPos;
|
|
/* 18 */ Vec3p mVel;
|
|
/* 24 */ Vec3p mAccel;
|
|
/* 30 */ u16 mAngle;
|
|
/* 32 */ u8 mInvincibilityTimer;
|
|
/* 33 */ u8 mInvincibilityIconTimer; // the blinking icon on top-screen
|
|
|
|
void func_ov001_020bc820(); // TODO: params
|
|
};
|