├── .gitignore ├── README.md └── Source ├── protobuffs.sln └── protobuffs ├── IMemAlloc.h ├── Protobuffs.cpp ├── Protobuffs.h ├── Protobuffs ├── ProtoParse.h ├── ProtobuffMessages.h ├── inventory_changer.h ├── pbwrap.hpp └── profile_info_changer.h ├── dllmain.cpp ├── main.h ├── protobuffs.vcxproj ├── protobuffs.vcxproj.filters ├── protobuffs.vcxproj.user ├── steam.h ├── vfunc_hook.cpp └── vfunc_hook.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/README.md -------------------------------------------------------------------------------- /Source/protobuffs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs.sln -------------------------------------------------------------------------------- /Source/protobuffs/IMemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/IMemAlloc.h -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs.cpp -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs.h -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs/ProtoParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs/ProtoParse.h -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs/ProtobuffMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs/ProtobuffMessages.h -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs/inventory_changer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs/inventory_changer.h -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs/pbwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs/pbwrap.hpp -------------------------------------------------------------------------------- /Source/protobuffs/Protobuffs/profile_info_changer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/Protobuffs/profile_info_changer.h -------------------------------------------------------------------------------- /Source/protobuffs/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/dllmain.cpp -------------------------------------------------------------------------------- /Source/protobuffs/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/main.h -------------------------------------------------------------------------------- /Source/protobuffs/protobuffs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/protobuffs.vcxproj -------------------------------------------------------------------------------- /Source/protobuffs/protobuffs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/protobuffs.vcxproj.filters -------------------------------------------------------------------------------- /Source/protobuffs/protobuffs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/protobuffs.vcxproj.user -------------------------------------------------------------------------------- /Source/protobuffs/steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/steam.h -------------------------------------------------------------------------------- /Source/protobuffs/vfunc_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/vfunc_hook.cpp -------------------------------------------------------------------------------- /Source/protobuffs/vfunc_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bananasss00/Protobuff-Parser-Writer/HEAD/Source/protobuffs/vfunc_hook.hpp --------------------------------------------------------------------------------