-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
076d687
commit 6033510
Showing
151 changed files
with
136,644 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ nbproject | |
vsproject | ||
Makefile | ||
output | ||
DXSDK | ||
generated/ | ||
|
||
### Eclipse ### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
Plugin-SDK (Grand Theft Auto IV) source file | ||
Authors: GTA Community. See more here | ||
https://github.com/DK22Pac/plugin-sdk | ||
Do not delete this comment block. Respect others' work! | ||
*/ | ||
#include "CCamIdle.h" | ||
|
||
static uint32_t CCam__ResetStatsAddr; | ||
void CCamIdle::ResetStats(bool unused) { | ||
plugin::CallMethodDyn(CCam__ResetStatsAddr, this, unused); | ||
} | ||
|
||
template<> | ||
void plugin::InitPatterns<CCamIdle>() { | ||
CCam__ResetStatsAddr = plugin::GetPattern("C7 81 ? ? ? ? ? ? ? ? C7 81 ? ? ? ? ? ? ? ? C7 81 ? ? ? ? ? ? ? ? C7 81 ? ? ? ? ? ? ? ? C7 81 ? ? ? ? ? ? ? ? C7 81 ? ? ? ? ? ? ? ? C7 81 ? ? ? ? ? ? ? ? 80 A1 ? ? ? ? ? 8B 81", 0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
Plugin-SDK (Grand Theft Auto IV) header file | ||
Authors: GTA Community. See more here | ||
https://github.com/DK22Pac/plugin-sdk | ||
Do not delete this comment block. Respect others' work! | ||
*/ | ||
#pragma once | ||
#include "PluginBase.h" | ||
#include "Rage.h" | ||
#include "CCam.h" | ||
|
||
class CCamIdle : CCam { | ||
public: | ||
|
||
public: | ||
void ResetStats(bool unused); | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.