├── .gitignore ├── AstralCore.cs ├── AstralCore.csproj ├── Events.cs ├── Hooks ├── Hooks.cs └── OnPlayerJL.cs ├── LICENSE ├── Logger.cs ├── Managers ├── LogManager.cs └── SelectionManager.cs ├── README.md ├── Types ├── Player.cs └── VRCNetworkingClient.cs └── Utils ├── MemoryUtils.cs └── PatternScan.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/.gitignore -------------------------------------------------------------------------------- /AstralCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/AstralCore.cs -------------------------------------------------------------------------------- /AstralCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/AstralCore.csproj -------------------------------------------------------------------------------- /Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Events.cs -------------------------------------------------------------------------------- /Hooks/Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Hooks/Hooks.cs -------------------------------------------------------------------------------- /Hooks/OnPlayerJL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Hooks/OnPlayerJL.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Logger.cs -------------------------------------------------------------------------------- /Managers/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Managers/LogManager.cs -------------------------------------------------------------------------------- /Managers/SelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Managers/SelectionManager.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/README.md -------------------------------------------------------------------------------- /Types/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Types/Player.cs -------------------------------------------------------------------------------- /Types/VRCNetworkingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Types/VRCNetworkingClient.cs -------------------------------------------------------------------------------- /Utils/MemoryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Utils/MemoryUtils.cs -------------------------------------------------------------------------------- /Utils/PatternScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrum-Project/AstralCore/HEAD/Utils/PatternScan.cs --------------------------------------------------------------------------------