1
0
mirror of synced 2024-11-14 18:38:05 +01:00
FFBArcadePlugin/Common Files/TeknoParrotGame.h

23 lines
441 B
C
Raw Normal View History

2019-11-01 21:34:57 +01:00
#pragma once
#include "Game.h"
class TeknoParrotGame : public Game {
// TP-related
HANDLE hSection;
LPVOID secData;
protected:
2021-04-17 00:31:12 +02:00
int ffbOffset = 0;
int ffbOffset2 = 0;
int ffbOffset3 = 0;
2022-06-08 07:06:23 +02:00
int ffbOffset4 = 0;
2019-11-01 21:34:57 +01:00
int GetTeknoParrotFFB();
int GetTeknoParrotFFB2();
2021-04-17 00:31:12 +02:00
int GetTeknoParrotFFB3();
2022-06-08 07:06:23 +02:00
int GetTeknoParrotFFB4();
2019-11-01 21:34:57 +01:00
TeknoParrotGame();
public:
void FFBLoop(EffectConstants *constants, Helpers *helpers, EffectTriggers* triggers);
};