1
0
mirror of synced 2025-01-20 16:08:45 +01:00
FFBArcadePlugin/Common Files/TeknoParrotGame.h

21 lines
393 B
C
Raw Normal View History

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