├── .gitattributes ├── .github └── workflows │ └── rocket-plugin-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── Teleportation.sln ├── Teleportation ├── Commands │ └── TPACommand.cs ├── Components │ └── MovementDetectorComponent.cs ├── Models │ └── TPARequest.cs ├── Teleportation.csproj ├── TeleportationConfiguration.cs ├── TeleportationPlugin.cs └── Utils │ ├── TeleportationPluginExtensions.cs │ └── TeleportationRequestHelper.cs └── icon.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/rocket-plugin-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/.github/workflows/rocket-plugin-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/README.md -------------------------------------------------------------------------------- /Teleportation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation.sln -------------------------------------------------------------------------------- /Teleportation/Commands/TPACommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/Commands/TPACommand.cs -------------------------------------------------------------------------------- /Teleportation/Components/MovementDetectorComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/Components/MovementDetectorComponent.cs -------------------------------------------------------------------------------- /Teleportation/Models/TPARequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/Models/TPARequest.cs -------------------------------------------------------------------------------- /Teleportation/Teleportation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/Teleportation.csproj -------------------------------------------------------------------------------- /Teleportation/TeleportationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/TeleportationConfiguration.cs -------------------------------------------------------------------------------- /Teleportation/TeleportationPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/TeleportationPlugin.cs -------------------------------------------------------------------------------- /Teleportation/Utils/TeleportationPluginExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/Utils/TeleportationPluginExtensions.cs -------------------------------------------------------------------------------- /Teleportation/Utils/TeleportationRequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/Teleportation/Utils/TeleportationRequestHelper.cs -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestoreMonarchyPlugins/Teleportation/HEAD/icon.png --------------------------------------------------------------------------------