Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion injector/injector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ namespace injector
template <class T>
static T *get()
{
return get().get<T>();
return get().template get<T>();
}

private:
Expand Down
1 change: 1 addition & 0 deletions plugin_sa/game_sa/CAEPedSpeechAudioEntity.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ enum eAudioPedType {
PED_TYPE_SPC = 5
};

class CPed;

class CAEPedSpeechAudioEntity : public CAEAudioEntity {
public:
Expand Down
2 changes: 1 addition & 1 deletion plugin_sa/game_sa/CBike.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#pragma once
#include "PluginBase.h"
#include "CVehicle.h"
#include "eSkidmarkType.h"
#include "tBikeHandlingData.h"


enum eBikeNodes {
BIKE_NODE_NONE = 0,
BIKE_CHASSIS = 1,
Expand Down
2 changes: 2 additions & 0 deletions plugin_sa/game_sa/CPostEffects.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
#include "RenderWare.h"
#include "CRGBA.h"

class CPed;

class CPostEffects {
public:
static void Initialise();
Expand Down
9 changes: 8 additions & 1 deletion plugin_sa/game_sa/CTaskSimpleHoldEntity.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@
#pragma once

#include "PluginBase.h"
#include "CTaskSimple.h"
#include "CAEAudioEntity.h"
#include "CAnimBlock.h"
#include "CTaskSimple.h"
#include "eAnimations.h"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still not alphabetical order.


class CEntity;
class CVector;
class CAnimBlendHierarchy;
class CAnimBlendAssociation;

class PLUGIN_API CTaskSimpleHoldEntity : public CTaskSimple {
protected:
Expand Down
Binary file added tools/premake/linux-clang-example/premake5
Binary file not shown.
1 change: 1 addition & 0 deletions tools/premake/linux-clang-example/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ project "plugin_sa"
"-fpermissive",
"-fcommon",
"-fms-extensions",
"-Wno-invalid-offsetof",
"-Wno-microsoft-include" ,
"-static",
}
Expand Down
Loading