1
0
mirror of synced 2024-11-24 15:00:12 +01:00
FFBArcadePlugin/Common Files/TeknoParrotGame.h
2019-11-03 20:46:18 +13:00

17 lines
297 B
C++

#pragma once
#include "Game.h"
class TeknoParrotGame : public Game {
// TP-related
HANDLE hSection;
LPVOID secData;
int ffbOffset = 0;
protected:
int GetTeknoParrotFFB();
TeknoParrotGame();
public:
void FFBLoop(EffectConstants *constants, Helpers *helpers, EffectTriggers* triggers);
};