gitextract_s_lvljwb/ ├── .gitignore ├── 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/ │ │ │ ├── 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 │ │ ├── freetype.lib │ │ └── 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 ├── Antario.sln ├── Antario.sln.DotSettings.user ├── Antario.vcxproj ├── Antario.vcxproj.filters ├── Antario.vcxproj.user ├── LICENSE └── README.md