├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── main.cpp └── safe_type.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompi2/Variables-obfuscator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompi2/Variables-obfuscator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompi2/Variables-obfuscator/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompi2/Variables-obfuscator/HEAD/main.cpp -------------------------------------------------------------------------------- /safe_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompi2/Variables-obfuscator/HEAD/safe_type.h --------------------------------------------------------------------------------