-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Game Event Broadcast Manipulation & Cancellation (#10)
- Loading branch information
1 parent
37b085a
commit 65bdd0b
Showing
17 changed files
with
620 additions
and
523 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 |
---|---|---|
@@ -1,19 +1,21 @@ | ||
--- | ||
Language: Cpp | ||
BasedOnStyle: Google | ||
AccessModifierOffset: -4 | ||
Standard: c++11 | ||
BasedOnStyle: LLVM | ||
IndentWidth: 4 | ||
TabWidth: 4 | ||
UseTab: Never | ||
ColumnLimit: 100 | ||
DerivePointerAlignment: false | ||
PointerAlignment: Left | ||
AlignAfterOpenBracket: Align | ||
BinPackParameters: false | ||
AlignEscapedNewlines: Left | ||
AlwaysBreakTemplateDeclarations: Yes | ||
PackConstructorInitializers: Never | ||
BreakConstructorInitializersBeforeComma: false | ||
IndentPPDirectives: BeforeHash | ||
SortIncludes: Never | ||
... | ||
|
||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
SortIncludes: false | ||
SpaceBeforeParens: ControlStatements | ||
AllowAllArgumentsOnNextLine: true | ||
AllowShortIfStatementsOnASingleLine: false | ||
IndentCaseLabels: false | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterClass: true | ||
AfterStruct: true | ||
AfterEnum: true | ||
AfterUnion: true | ||
AfterNamespace: false | ||
AfterFunction: true | ||
IndentBraces: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,5 +30,5 @@ SET( | |
dynload_s | ||
dyncall_s | ||
distorm | ||
funchook-shared | ||
funchook-static | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Runtime.CompilerServices; | ||
|
||
namespace CounterStrikeSharp.API.Core; | ||
|
||
public class GameEventInfo : NativeObject | ||
{ | ||
public GameEventInfo(IntPtr pointer) : base(pointer) | ||
{ | ||
} | ||
|
||
public unsafe ref bool DontBroadcast => ref Unsafe.AsRef<bool>((void*)Handle); | ||
} |
Oops, something went wrong.