mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-28 19:44:32 +00:00
14 lines
271 B
C++
14 lines
271 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include <math/seadVector.h>
|
|
|
|
namespace al {
|
|
struct PadDataPack {
|
|
s32 trig = 0;
|
|
s32 hold = 0;
|
|
sead::Vector2f leftStick = sead::Vector2f::zero;
|
|
sead::Vector2f pointer = sead::Vector2f::zero;
|
|
};
|
|
} // namespace al
|