mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-05 03:00:50 -06:00
15 lines
241 B
C++
15 lines
241 B
C++
#pragma once
|
|
|
|
#include <Hedgehog/Math/Vector.h>
|
|
|
|
namespace SWA
|
|
{
|
|
class CCharacterProxy
|
|
{
|
|
public:
|
|
SWA_INSERT_PADDING(0x120);
|
|
Hedgehog::Math::CVector m_Position;
|
|
Hedgehog::Math::CVector m_Velocity;
|
|
};
|
|
}
|