├── .gitignore ├── README.md ├── SimpleUC.sln └── SimpleUC ├── SimpleUC.cpp ├── SimpleUC.vcxproj ├── SimpleUC.vcxproj.filters ├── Utility.cpp ├── Utility.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/README.md -------------------------------------------------------------------------------- /SimpleUC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC.sln -------------------------------------------------------------------------------- /SimpleUC/SimpleUC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC/SimpleUC.cpp -------------------------------------------------------------------------------- /SimpleUC/SimpleUC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC/SimpleUC.vcxproj -------------------------------------------------------------------------------- /SimpleUC/SimpleUC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC/SimpleUC.vcxproj.filters -------------------------------------------------------------------------------- /SimpleUC/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC/Utility.cpp -------------------------------------------------------------------------------- /SimpleUC/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC/Utility.h -------------------------------------------------------------------------------- /SimpleUC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sndix/Apex-Legends-Simple-Glow/HEAD/SimpleUC/targetver.h --------------------------------------------------------------------------------