├── .gitignore ├── LICENSE ├── README.md ├── VRC-AntiFBTHeaven ├── Boot.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user ├── UdonBlocker.csproj └── Wrappers │ ├── Logger.cs │ └── Utils.cs └── VRC-UdonBlocker.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/README.md -------------------------------------------------------------------------------- /VRC-AntiFBTHeaven/Boot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-AntiFBTHeaven/Boot.cs -------------------------------------------------------------------------------- /VRC-AntiFBTHeaven/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-AntiFBTHeaven/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /VRC-AntiFBTHeaven/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-AntiFBTHeaven/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /VRC-AntiFBTHeaven/UdonBlocker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-AntiFBTHeaven/UdonBlocker.csproj -------------------------------------------------------------------------------- /VRC-AntiFBTHeaven/Wrappers/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-AntiFBTHeaven/Wrappers/Logger.cs -------------------------------------------------------------------------------- /VRC-AntiFBTHeaven/Wrappers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-AntiFBTHeaven/Wrappers/Utils.cs -------------------------------------------------------------------------------- /VRC-UdonBlocker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbra999/VRC-UdonBlocker/HEAD/VRC-UdonBlocker.sln --------------------------------------------------------------------------------