├── .gitignore ├── Chameleon.sln ├── Chameleon ├── Chameleon.cpp ├── Chameleon.vcxproj ├── Chameleon.vcxproj.filters ├── ClientClass.h ├── DataTable.h ├── Defines.h ├── FireEventClientSide.h ├── FrameStageNotify.h ├── Functions.h ├── IBaseClientDLL.h ├── IClientEntity.h ├── IClientEntityList.h ├── IGameEvents.h ├── IVEngineClient.h ├── IVModelInfoClient.h ├── Proxies.h ├── SDK.h └── Skins.h ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/.gitignore -------------------------------------------------------------------------------- /Chameleon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon.sln -------------------------------------------------------------------------------- /Chameleon/Chameleon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Chameleon.cpp -------------------------------------------------------------------------------- /Chameleon/Chameleon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Chameleon.vcxproj -------------------------------------------------------------------------------- /Chameleon/Chameleon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Chameleon.vcxproj.filters -------------------------------------------------------------------------------- /Chameleon/ClientClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/ClientClass.h -------------------------------------------------------------------------------- /Chameleon/DataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/DataTable.h -------------------------------------------------------------------------------- /Chameleon/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Defines.h -------------------------------------------------------------------------------- /Chameleon/FireEventClientSide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/FireEventClientSide.h -------------------------------------------------------------------------------- /Chameleon/FrameStageNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/FrameStageNotify.h -------------------------------------------------------------------------------- /Chameleon/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Functions.h -------------------------------------------------------------------------------- /Chameleon/IBaseClientDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/IBaseClientDLL.h -------------------------------------------------------------------------------- /Chameleon/IClientEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/IClientEntity.h -------------------------------------------------------------------------------- /Chameleon/IClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/IClientEntityList.h -------------------------------------------------------------------------------- /Chameleon/IGameEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/IGameEvents.h -------------------------------------------------------------------------------- /Chameleon/IVEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/IVEngineClient.h -------------------------------------------------------------------------------- /Chameleon/IVModelInfoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/IVModelInfoClient.h -------------------------------------------------------------------------------- /Chameleon/Proxies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Proxies.h -------------------------------------------------------------------------------- /Chameleon/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/SDK.h -------------------------------------------------------------------------------- /Chameleon/Skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/Chameleon/Skins.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aixxe/Chameleon/HEAD/README.md --------------------------------------------------------------------------------