User:Kulagin/Structs

From Wavu Wiki, the 🌊 wavy Tekken wiki
VideoMode
    enum class VideoModeType : __int32 {
        Fullscreen = 0,
        Borderless = 1,
        Windowed = 2
    };

    class VideoMode {
    public:
        int Width;
        int Height;
        VideoModeType VideoModeType;
    };

Video mode at address 0x143478DE0 on 4.20 patch.

CPUAction
enum class CPUAction : __int32 {
        Stand = 0,
        StandingGuard = 1,
        StandAndApproach = 2,
        Crouch = 3,
        CrouchingGuard = 4,
        CrouchAndFollow = 5,
        GuardAll = 6,
        RandomGuard = 9,
        Jump = 10,
        NeutralGuard = 7,
        Controller = 8,
        Mimic = 11,
        CPU = 12,
        RepeatAction = 13
};

CPU Action enum at address 0x143442734 on 4.20 patch.