├── .gitignore ├── Antario.sln ├── Antario.sln.DotSettings.user ├── Antario.vcxproj ├── Antario.vcxproj.filters ├── Antario.vcxproj.user ├── Antario ├── EventListener.h ├── Features │ ├── ESP.cpp │ ├── ESP.h │ ├── EnginePrediction.cpp │ ├── EnginePrediction.h │ ├── Features.h │ └── Misc.h ├── GUI │ ├── GUI.cpp │ └── GUI.h ├── Hooks.cpp ├── Hooks.h ├── LIB │ └── freetype │ │ ├── freetype.dll │ │ ├── freetype.lib │ │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── cffotypes.h │ │ │ ├── cfftypes.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdrv.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpsprop.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcfftl.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ └── svwinfnt.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ └── tttypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ │ └── ft2build.h ├── Menu.cpp ├── SDK │ ├── CEntity.h │ ├── CGlobalVarsBase.h │ ├── CHandle.h │ ├── CInput.h │ ├── CPrediction.h │ ├── ClientClass.h │ ├── Definitions.h │ ├── IBaseClientDll.h │ ├── IClientEntity.h │ ├── IClientEntityList.h │ ├── IClientMode.h │ ├── IClientNetworkable.h │ ├── IClientRenderable.h │ ├── IClientThinkable.h │ ├── IClientUnknown.h │ ├── IGameEvent.h │ ├── ISurface.h │ ├── IVEngineClient.h │ ├── KeyValues.h │ ├── PlayerInfo.h │ ├── Recv.h │ ├── VMatrix.h │ └── Vector.h ├── Settings.cpp ├── Settings.h ├── Utils │ ├── Color.h │ ├── DrawManager.cpp │ ├── DrawManager.h │ ├── Font.cpp │ ├── Font.h │ ├── GlobalVars.cpp │ ├── GlobalVars.h │ ├── Interfaces.cpp │ ├── Interfaces.h │ ├── NetvarManager.cpp │ ├── NetvarManager.h │ ├── SPoint.h │ ├── SRect.h │ └── Utils.h └── dllmain.cpp ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/.gitignore -------------------------------------------------------------------------------- /Antario.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario.sln -------------------------------------------------------------------------------- /Antario.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario.sln.DotSettings.user -------------------------------------------------------------------------------- /Antario.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario.vcxproj -------------------------------------------------------------------------------- /Antario.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario.vcxproj.filters -------------------------------------------------------------------------------- /Antario.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario.vcxproj.user -------------------------------------------------------------------------------- /Antario/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/EventListener.h -------------------------------------------------------------------------------- /Antario/Features/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Features/ESP.cpp -------------------------------------------------------------------------------- /Antario/Features/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Features/ESP.h -------------------------------------------------------------------------------- /Antario/Features/EnginePrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Features/EnginePrediction.cpp -------------------------------------------------------------------------------- /Antario/Features/EnginePrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Features/EnginePrediction.h -------------------------------------------------------------------------------- /Antario/Features/Features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Features/Features.h -------------------------------------------------------------------------------- /Antario/Features/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Features/Misc.h -------------------------------------------------------------------------------- /Antario/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/GUI/GUI.cpp -------------------------------------------------------------------------------- /Antario/GUI/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/GUI/GUI.h -------------------------------------------------------------------------------- /Antario/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Hooks.cpp -------------------------------------------------------------------------------- /Antario/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Hooks.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype.dll -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype.lib -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/config/ftheader.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/config/ftoption.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/freetype.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftadvanc.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftbbox.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftbdf.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftbitmap.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftbzip2.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftcache.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftchapters.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftcid.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftcolor.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftdriver.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/fterrdef.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/fterrors.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftgasp.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftglyph.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftgxval.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftgzip.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftimage.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftincrem.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftlist.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftlzw.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftmac.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftmm.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftmodapi.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftmoderr.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftotval.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftoutln.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftparams.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftpfr.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftrender.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftsizes.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftsnames.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftstroke.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftsynth.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftsystem.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/fttrigon.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/fttypes.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/autohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/autohint.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/cffotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/cffotypes.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/cfftypes.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftdrv.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftgloadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftgloadr.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/fthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/fthash.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftmemory.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftpsprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftpsprop.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftstream.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/internal.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/psaux.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/pshints.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svbdf.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svcfftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svcfftl.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svcid.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svfntfmt.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svgldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svgldict.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svgxval.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svkern.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svmetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svmetric.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svmm.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svotval.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svpfr.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svpostnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svpostnm.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svprop.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svpscmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svpscmap.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svpsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svpsinfo.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svsfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svsfnt.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svttcmap.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svtteng.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svttglyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svttglyf.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/services/svwinfnt.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/t1types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/t1types.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/internal/tttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/internal/tttypes.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/t1tables.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/ttnameid.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/tttables.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/freetype/tttags.h -------------------------------------------------------------------------------- /Antario/LIB/freetype/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/LIB/freetype/ft2build.h -------------------------------------------------------------------------------- /Antario/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Menu.cpp -------------------------------------------------------------------------------- /Antario/SDK/CEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/CEntity.h -------------------------------------------------------------------------------- /Antario/SDK/CGlobalVarsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/CGlobalVarsBase.h -------------------------------------------------------------------------------- /Antario/SDK/CHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/CHandle.h -------------------------------------------------------------------------------- /Antario/SDK/CInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/CInput.h -------------------------------------------------------------------------------- /Antario/SDK/CPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/CPrediction.h -------------------------------------------------------------------------------- /Antario/SDK/ClientClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/ClientClass.h -------------------------------------------------------------------------------- /Antario/SDK/Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/Definitions.h -------------------------------------------------------------------------------- /Antario/SDK/IBaseClientDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IBaseClientDll.h -------------------------------------------------------------------------------- /Antario/SDK/IClientEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientEntity.h -------------------------------------------------------------------------------- /Antario/SDK/IClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientEntityList.h -------------------------------------------------------------------------------- /Antario/SDK/IClientMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientMode.h -------------------------------------------------------------------------------- /Antario/SDK/IClientNetworkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientNetworkable.h -------------------------------------------------------------------------------- /Antario/SDK/IClientRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientRenderable.h -------------------------------------------------------------------------------- /Antario/SDK/IClientThinkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientThinkable.h -------------------------------------------------------------------------------- /Antario/SDK/IClientUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IClientUnknown.h -------------------------------------------------------------------------------- /Antario/SDK/IGameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IGameEvent.h -------------------------------------------------------------------------------- /Antario/SDK/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/ISurface.h -------------------------------------------------------------------------------- /Antario/SDK/IVEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/IVEngineClient.h -------------------------------------------------------------------------------- /Antario/SDK/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/KeyValues.h -------------------------------------------------------------------------------- /Antario/SDK/PlayerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/PlayerInfo.h -------------------------------------------------------------------------------- /Antario/SDK/Recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/Recv.h -------------------------------------------------------------------------------- /Antario/SDK/VMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/VMatrix.h -------------------------------------------------------------------------------- /Antario/SDK/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/SDK/Vector.h -------------------------------------------------------------------------------- /Antario/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Settings.cpp -------------------------------------------------------------------------------- /Antario/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Settings.h -------------------------------------------------------------------------------- /Antario/Utils/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/Color.h -------------------------------------------------------------------------------- /Antario/Utils/DrawManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/DrawManager.cpp -------------------------------------------------------------------------------- /Antario/Utils/DrawManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/DrawManager.h -------------------------------------------------------------------------------- /Antario/Utils/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/Font.cpp -------------------------------------------------------------------------------- /Antario/Utils/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/Font.h -------------------------------------------------------------------------------- /Antario/Utils/GlobalVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/GlobalVars.cpp -------------------------------------------------------------------------------- /Antario/Utils/GlobalVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/GlobalVars.h -------------------------------------------------------------------------------- /Antario/Utils/Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/Interfaces.cpp -------------------------------------------------------------------------------- /Antario/Utils/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/Interfaces.h -------------------------------------------------------------------------------- /Antario/Utils/NetvarManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/NetvarManager.cpp -------------------------------------------------------------------------------- /Antario/Utils/NetvarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/NetvarManager.h -------------------------------------------------------------------------------- /Antario/Utils/SPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/SPoint.h -------------------------------------------------------------------------------- /Antario/Utils/SRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/SRect.h -------------------------------------------------------------------------------- /Antario/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/Utils/Utils.h -------------------------------------------------------------------------------- /Antario/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/Antario/dllmain.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwilcz/Antario/HEAD/README.md --------------------------------------------------------------------------------