├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE.TXT ├── README.md ├── SafeValues.sln └── SafeValues ├── AntiSpeedHack.cs ├── PlayerSaves.cs ├── SafeFloat.cs ├── SafeInt.cs ├── SafeLong.cs └── SafeValues.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/README.md -------------------------------------------------------------------------------- /SafeValues.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues.sln -------------------------------------------------------------------------------- /SafeValues/AntiSpeedHack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues/AntiSpeedHack.cs -------------------------------------------------------------------------------- /SafeValues/PlayerSaves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues/PlayerSaves.cs -------------------------------------------------------------------------------- /SafeValues/SafeFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues/SafeFloat.cs -------------------------------------------------------------------------------- /SafeValues/SafeInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues/SafeInt.cs -------------------------------------------------------------------------------- /SafeValues/SafeLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues/SafeLong.cs -------------------------------------------------------------------------------- /SafeValues/SafeValues.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ookii-tsuki/SafeValues/HEAD/SafeValues/SafeValues.csproj --------------------------------------------------------------------------------