You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
821 B
37 lines
821 B
#if defined _cssfixes_included |
|
#endinput |
|
#endif |
|
#define _cssfixes_included |
|
|
|
forward void OnRunThinkFunctions(bool simulating); |
|
forward void OnPrePlayerThinkFunctions(); |
|
forward void OnPostPlayerThinkFunctions(); |
|
forward void OnRunThinkFunctionsPost(bool simulating); |
|
|
|
// -1 = Ignore, normal operation. |
|
// 0 = Block ALL SV_TriggerMoved. |
|
// >0 = Entity index for which to allow EnumElement to be called. |
|
// REMEMBER TO CALL THIS AGAIN WITH -1 AFTER USING IT !!! |
|
native void FilterTriggerMoved(int entity); |
|
|
|
public Extension __ext_CSSFixes = |
|
{ |
|
name = "CSSFixes", |
|
file = "CSSFixes.ext", |
|
#if defined AUTOLOAD_EXTENSIONS |
|
autoload = 1, |
|
#else |
|
autoload = 0, |
|
#endif |
|
#if defined REQUIRE_EXTENSIONS |
|
required = 1, |
|
#else |
|
required = 0, |
|
#endif |
|
}; |
|
|
|
#if !defined REQUIRE_EXTENSIONS |
|
public __ext_CSSFixes_SetNTVOptional() |
|
{ |
|
} |
|
#endif
|
|
|