├── .gitignore ├── README.md └── csharp ├── Common.cs ├── Natives.cs ├── Properties └── AssemblyInfo.cs ├── Scaleform.cs ├── Scaleforms.csproj ├── Scaleforms.sln ├── Scaleforms └── Generic │ ├── Binoculars.cs │ ├── Dashboard.cs │ ├── HeliCam.cs │ ├── WindMeter.cs │ ├── YachtName.cs │ └── YachtNameStern.cs ├── packages.config └── tests └── rph1 ├── EntryPoint.cs ├── Properties └── AssemblyInfo.cs └── Scaleforms.Tests.RPH1.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ 2 | .idea/ 3 | 4 | # C# 5 | bin/ 6 | deps/ 7 | obj/ 8 | packages/ 9 | *.DotSettings* 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/README.md -------------------------------------------------------------------------------- /csharp/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Common.cs -------------------------------------------------------------------------------- /csharp/Natives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Natives.cs -------------------------------------------------------------------------------- /csharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Scaleform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleform.cs -------------------------------------------------------------------------------- /csharp/Scaleforms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms.csproj -------------------------------------------------------------------------------- /csharp/Scaleforms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms.sln -------------------------------------------------------------------------------- /csharp/Scaleforms/Generic/Binoculars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms/Generic/Binoculars.cs -------------------------------------------------------------------------------- /csharp/Scaleforms/Generic/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms/Generic/Dashboard.cs -------------------------------------------------------------------------------- /csharp/Scaleforms/Generic/HeliCam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms/Generic/HeliCam.cs -------------------------------------------------------------------------------- /csharp/Scaleforms/Generic/WindMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms/Generic/WindMeter.cs -------------------------------------------------------------------------------- /csharp/Scaleforms/Generic/YachtName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms/Generic/YachtName.cs -------------------------------------------------------------------------------- /csharp/Scaleforms/Generic/YachtNameStern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/Scaleforms/Generic/YachtNameStern.cs -------------------------------------------------------------------------------- /csharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/packages.config -------------------------------------------------------------------------------- /csharp/tests/rph1/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/tests/rph1/EntryPoint.cs -------------------------------------------------------------------------------- /csharp/tests/rph1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/tests/rph1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/tests/rph1/Scaleforms.Tests.RPH1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasRitter/gtav-scaleforms/HEAD/csharp/tests/rph1/Scaleforms.Tests.RPH1.csproj --------------------------------------------------------------------------------