Add forwards for Physics_RunThinkFunctions

This commit is contained in:
2016-12-16 23:45:05 +01:00
parent 04b749e985
commit 7f56360ee9
4 changed files with 93 additions and 6 deletions

29
include/CSSFixes.inc Normal file
View File

@ -0,0 +1,29 @@
#if defined _cssfixes_included
#endinput
#endif
#define _cssfixes_included
forward void OnRunThinkFunctions(bool simulating);
forward void OnRunThinkFunctionsPost(bool simulating);
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