├── .gitignore ├── LICENSE ├── README.md ├── SetPriorityVRChat.vcxproj ├── SetPriorityVRChat.vcxproj.filters ├── SetPriorityVRChat.vcxproj.user ├── example.png └── src ├── SetPriorityVRChat.cpp └── termcolor └── termcolor.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/README.md -------------------------------------------------------------------------------- /SetPriorityVRChat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/SetPriorityVRChat.vcxproj -------------------------------------------------------------------------------- /SetPriorityVRChat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/SetPriorityVRChat.vcxproj.filters -------------------------------------------------------------------------------- /SetPriorityVRChat.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/SetPriorityVRChat.vcxproj.user -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/example.png -------------------------------------------------------------------------------- /src/SetPriorityVRChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/src/SetPriorityVRChat.cpp -------------------------------------------------------------------------------- /src/termcolor/termcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueberryWolf/SetVRChatPriority/HEAD/src/termcolor/termcolor.hpp --------------------------------------------------------------------------------