mirror of
https://github.com/zeldaret/st
synced 2026-05-23 23:05:25 -04:00
0698c28bb0
* clean up math.h and attempt to improve existing vector maths * fix broken matches and match new stuff
19 lines
392 B
C++
19 lines
392 B
C++
#pragma once
|
|
|
|
#include "math.hpp"
|
|
#include "types.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
|
|
};
|