Update to version 1.1.0.0

Some fixes, code optimizations and changes to the `maxplayers` variable increment method
This commit is contained in:
Accelerator
2021-06-30 12:06:37 +05:00
committed by GitHub
parent acc985189a
commit 87774f26b6
14 changed files with 587 additions and 178 deletions

23
AMBuilder Normal file
View File

@ -0,0 +1,23 @@
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
projectName = 'l4dtoolz'
# smsdk_ext.cpp will be automatically added later
sourceFiles = [
'l4dtoolz_mm.cpp',
'signature.cpp',
]
###############
# Make sure to edit PackageScript, which copies your files to their appropriate locations
# Simple extensions do not need to modify past this point.
project = Extension.HL2Project(builder, projectName)
project.sources += sourceFiles
for sdk_name in Extension.sdks:
sdk = Extension.sdks[sdk_name]
binary = Extension.HL2Config(project, projectName + sdk.ext, sdk)
Extension.extensions = builder.Add(project)