├── .devcontainer └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── blank.md │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .vscode └── launch.json ├── GeometryDashAPI.Benchmarks ├── BenchmarkSources │ └── SampleLevel.txt ├── Benchmarks │ ├── DisassemblyBenchmark.cs │ ├── GDParserBenchmark.cs │ ├── GameDataBenchmark.cs │ ├── LLParserBenchmark.cs │ ├── LevelLoadBenchmark.cs │ ├── ObjectParserBenchmark.cs │ └── ReflectionVsExpression.cs ├── GeometryDashAPI.Benchmarks.csproj └── Program.cs ├── GeometryDashAPI.Tests ├── BlockParseTest.cs ├── BlockTests.cs ├── Documentation │ └── BlocksDocumentation.cs ├── GameConvertTest.cs ├── GameDataTests.cs ├── GameResourcesTests.cs ├── GameServerTests.cs ├── GeometryDashAPI.Tests.csproj ├── GuidelinesTest.cs ├── Integration │ └── Levels │ │ ├── LevelResponseDefinedTest.cs │ │ ├── LevelResponseFromStreamTest.cs │ │ └── LevelResponseTestBase.cs ├── LLParserTests.cs ├── LevelDurationTests.cs ├── MessageTests.cs ├── ObjectParserTests.cs ├── PaginationTests.cs ├── Sources.cs ├── StructParserTests.cs ├── TestExtensions.cs ├── TypeDescriptorTests.cs └── data │ ├── levels │ ├── 116631_XmasParty │ ├── 12034598_Conclusion │ └── 28755513_TheFinalLair │ └── saves │ ├── CCGameManager1.dat │ ├── CCGameManagerEmpty.dat │ ├── CCLocalLevels1.dat │ └── CCLocalLevelsEmpty.dat ├── GeometryDashAPI.sln ├── GeometryDashAPI.sln.DotSettings ├── GeometryDashAPI ├── Attributes │ ├── ArraySeparatorAttribute.cs │ ├── AsStructAttribute.cs │ ├── GamePropertyAttribute.cs │ ├── OriginalNameAttribute.cs │ └── SenseAttribute.cs ├── Crypt.cs ├── Culture.cs ├── Data │ ├── DatFileFormat.cs │ ├── Enums │ │ ├── GameDataType.cs │ │ └── TextureQuality.cs │ ├── GameData.cs │ ├── GameManager.cs │ ├── GameResources.cs │ ├── LocalLevels.cs │ └── Models │ │ ├── GdResolution.cs │ │ └── LevelCreatorModel.cs ├── Exceptions │ ├── BlockLoadException.cs │ ├── ConstructorNotFoundException.cs │ ├── NotImplementIBlockException.cs │ ├── PropertyNotSupportedException.cs │ └── UnableSetException.cs ├── Extensions.cs ├── Factories │ ├── DefaultHttpClientFactory.cs │ └── IFactory.cs ├── GameConvert.cs ├── GameObject.cs ├── GameType.cs ├── GeometryDashAPI.csproj ├── GeometryDashApi.cs ├── IGameObject.cs ├── Levels │ ├── BlockGroup.cs │ ├── BlockList.cs │ ├── Color.cs │ ├── ColorList.cs │ ├── Enums │ │ ├── ColorType.cs │ │ ├── ConditionType.cs │ │ ├── Easing.cs │ │ ├── GameMode.cs │ │ ├── GuidelineColors.cs │ │ ├── Layer.cs │ │ ├── PulseModeType.cs │ │ ├── SpeedType.cs │ │ ├── TargetPosGroupType.cs │ │ ├── TargetType.cs │ │ └── ToggleMode.cs │ ├── GameBlockAttribute.cs │ ├── GameObjects │ │ ├── Default │ │ │ ├── BaseBlock.cs │ │ │ ├── Block.cs │ │ │ ├── ColorBlock.cs │ │ │ ├── DetailBlock.cs │ │ │ ├── Portal.cs │ │ │ ├── TargetingTrigger.cs │ │ │ └── Trigger.cs │ │ ├── IBlock.cs │ │ ├── ITrigger.cs │ │ ├── Specific │ │ │ ├── CircleParticle.cs │ │ │ ├── Coin.cs │ │ │ ├── JumpPlate.cs │ │ │ ├── JumpSphere.cs │ │ │ ├── SpeedBlock.cs │ │ │ ├── SquareParticle.cs │ │ │ ├── StartPos.cs │ │ │ └── TextBlock.cs │ │ └── Triggers │ │ │ ├── AlphaTrigger.cs │ │ │ ├── AnimateTrigger.cs │ │ │ ├── CollisionBlockTrigger.cs │ │ │ ├── CollisionTrigger.cs │ │ │ ├── ColorTrigger.cs │ │ │ ├── CountTrigger.cs │ │ │ ├── DisableBgEffectTrigger.cs │ │ │ ├── DisablePlayerTrailTrigger.cs │ │ │ ├── EditSfxTrigger.cs │ │ │ ├── EditSongTrigger.cs │ │ │ ├── EnableBgEffectTrigger.cs │ │ │ ├── EnablePlayerTrailTrigger.cs │ │ │ ├── FollowPlayerYTrigger.cs │ │ │ ├── FollowTrigger.cs │ │ │ ├── HidePlayerIconTrigger.cs │ │ │ ├── InstantCountTrigger.cs │ │ │ ├── MoveTrigger.cs │ │ │ ├── OnDeathTrigger.cs │ │ │ ├── PickupTrigger.cs │ │ │ ├── PulseTrigger.cs │ │ │ ├── RotateTrigger.cs │ │ │ ├── SfxTrigger.cs │ │ │ ├── ShakeTrigger.cs │ │ │ ├── ShowPlayerIconTrigger.cs │ │ │ ├── SongTrigger.cs │ │ │ ├── SpawnTrigger.cs │ │ │ ├── StopTrigger.cs │ │ │ ├── ToggleTrigger.cs │ │ │ └── TouchTrigger.cs │ ├── Guideline.cs │ ├── Guidelines.cs │ ├── Hsv.cs │ ├── Level.cs │ ├── LevelDuration.cs │ ├── LevelOptions.cs │ ├── LevelSpeed.cs │ └── Structures │ │ └── RgbColor.cs ├── Memory │ ├── Access.cs │ └── GameProcess.cs ├── OfficialLevel.cs ├── Property.cs ├── Serialization │ ├── IDescriptor.cs │ ├── IGameSerializer.cs │ ├── LLParserSpan.cs │ ├── MemberDescription.cs │ ├── ObjectSerializer.cs │ ├── Parsers.cs │ ├── Plist.cs │ ├── PrinterInfo.cs │ ├── Printers.cs │ ├── SetterInfo.cs │ ├── TypeDescriptor.cs │ └── TypeDescriptorExtensions.cs └── Server │ ├── Dtos │ ├── Account.cs │ ├── AccountComment.cs │ ├── AuthorIds.cs │ ├── LevelInfo.cs │ ├── LevelPreview.cs │ ├── Message.cs │ ├── MessageContent.cs │ ├── MessagePreview.cs │ ├── MusicInfo.cs │ └── UserPreview.cs │ ├── Enums │ ├── AllowMessagesFrom.cs │ ├── DataType.cs │ ├── DemonDifficulty.cs │ ├── Difficulty.cs │ ├── DifficultyIcon.cs │ ├── GameModeratorType.cs │ ├── LengthType.cs │ ├── OfficialSong.cs │ ├── SearchDemonDifficulty.cs │ ├── SearchDifficulty.cs │ ├── SearchType.cs │ └── TopType.cs │ ├── GameClient.cs │ ├── IGameClient.cs │ ├── IQuery.cs │ ├── Network.cs │ ├── Pagination.cs │ ├── Parameters.cs │ ├── Queries │ ├── FlexibleQuery.cs │ ├── GetLevelsQuery.cs │ ├── IdentifierQuery.cs │ ├── OnlineQuery.cs │ ├── PasswordQuery.cs │ └── RandomSeedQuery.cs │ ├── Responses │ ├── AccountCommentPageResponse.cs │ ├── AccountInfoResponse.cs │ ├── LevelPageResponse.cs │ ├── LevelResponse.cs │ ├── LoginResponse.cs │ ├── MessagesPageResponse.cs │ ├── NoneResponse.cs │ ├── TopResponse.cs │ └── UserResponse.cs │ ├── ServerResponse.cs │ └── ServerResponseHelper.cs ├── Images ├── LevelResultInReadme.png ├── banner.png ├── logo.png └── wave.png ├── LICENSE ├── Playground ├── CustomBlockType.cs ├── Playground.csproj └── Program.cs ├── README.md ├── TestObjects ├── AllTypes.cs ├── ComplexParserObjects.cs ├── InheritFieldFrom.cs ├── LargeObject.cs ├── MultipleSense.cs ├── ObjectSample.cs ├── ObjectWithEnum.cs ├── SampleContainer.cs ├── SimpleEnum.cs ├── StructSample.cs ├── TestObjects.csproj └── WithNullable.cs ├── data └── .gitignore └── docs └── colorMapping.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/blank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.github/ISSUE_TEMPLATE/blank.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/BenchmarkSources/SampleLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/BenchmarkSources/SampleLevel.txt -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/DisassemblyBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/DisassemblyBenchmark.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/GDParserBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/GDParserBenchmark.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/GameDataBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/GameDataBenchmark.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/LLParserBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/LLParserBenchmark.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/LevelLoadBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/LevelLoadBenchmark.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/ObjectParserBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/ObjectParserBenchmark.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Benchmarks/ReflectionVsExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Benchmarks/ReflectionVsExpression.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/GeometryDashAPI.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/GeometryDashAPI.Benchmarks.csproj -------------------------------------------------------------------------------- /GeometryDashAPI.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Benchmarks/Program.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/BlockParseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/BlockParseTest.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/BlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/BlockTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/Documentation/BlocksDocumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/Documentation/BlocksDocumentation.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/GameConvertTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/GameConvertTest.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/GameDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/GameDataTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/GameResourcesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/GameResourcesTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/GameServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/GameServerTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/GeometryDashAPI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/GeometryDashAPI.Tests.csproj -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/GuidelinesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/GuidelinesTest.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/Integration/Levels/LevelResponseDefinedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/Integration/Levels/LevelResponseDefinedTest.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/Integration/Levels/LevelResponseFromStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/Integration/Levels/LevelResponseFromStreamTest.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/Integration/Levels/LevelResponseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/Integration/Levels/LevelResponseTestBase.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/LLParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/LLParserTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/LevelDurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/LevelDurationTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/MessageTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/ObjectParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/ObjectParserTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/PaginationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/PaginationTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/Sources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/Sources.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/StructParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/StructParserTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/TestExtensions.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/TypeDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/TypeDescriptorTests.cs -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/levels/116631_XmasParty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/levels/116631_XmasParty -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/levels/12034598_Conclusion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/levels/12034598_Conclusion -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/levels/28755513_TheFinalLair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/levels/28755513_TheFinalLair -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/saves/CCGameManager1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/saves/CCGameManager1.dat -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/saves/CCGameManagerEmpty.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/saves/CCGameManagerEmpty.dat -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/saves/CCLocalLevels1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/saves/CCLocalLevels1.dat -------------------------------------------------------------------------------- /GeometryDashAPI.Tests/data/saves/CCLocalLevelsEmpty.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.Tests/data/saves/CCLocalLevelsEmpty.dat -------------------------------------------------------------------------------- /GeometryDashAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.sln -------------------------------------------------------------------------------- /GeometryDashAPI.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI.sln.DotSettings -------------------------------------------------------------------------------- /GeometryDashAPI/Attributes/ArraySeparatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Attributes/ArraySeparatorAttribute.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Attributes/AsStructAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Attributes/AsStructAttribute.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Attributes/GamePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Attributes/GamePropertyAttribute.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Attributes/OriginalNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Attributes/OriginalNameAttribute.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Attributes/SenseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Attributes/SenseAttribute.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Crypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Crypt.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Culture.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/DatFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/DatFileFormat.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/Enums/GameDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/Enums/GameDataType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/Enums/TextureQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/Enums/TextureQuality.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/GameData.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/GameManager.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/GameResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/GameResources.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/LocalLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/LocalLevels.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/Models/GdResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/Models/GdResolution.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Data/Models/LevelCreatorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Data/Models/LevelCreatorModel.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Exceptions/BlockLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Exceptions/BlockLoadException.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Exceptions/ConstructorNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Exceptions/ConstructorNotFoundException.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Exceptions/NotImplementIBlockException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Exceptions/NotImplementIBlockException.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Exceptions/PropertyNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Exceptions/PropertyNotSupportedException.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Exceptions/UnableSetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Exceptions/UnableSetException.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Extensions.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Factories/DefaultHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Factories/DefaultHttpClientFactory.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Factories/IFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Factories/IFactory.cs -------------------------------------------------------------------------------- /GeometryDashAPI/GameConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/GameConvert.cs -------------------------------------------------------------------------------- /GeometryDashAPI/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/GameObject.cs -------------------------------------------------------------------------------- /GeometryDashAPI/GameType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/GameType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/GeometryDashAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/GeometryDashAPI.csproj -------------------------------------------------------------------------------- /GeometryDashAPI/GeometryDashApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/GeometryDashApi.cs -------------------------------------------------------------------------------- /GeometryDashAPI/IGameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/IGameObject.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/BlockGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/BlockGroup.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/BlockList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/BlockList.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Color.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/ColorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/ColorList.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/ColorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/ColorType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/ConditionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/ConditionType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/Easing.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/GameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/GameMode.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/GuidelineColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/GuidelineColors.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/Layer.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/PulseModeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/PulseModeType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/SpeedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/SpeedType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/TargetPosGroupType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/TargetPosGroupType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/TargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/TargetType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Enums/ToggleMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Enums/ToggleMode.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameBlockAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameBlockAttribute.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/BaseBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/BaseBlock.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/Block.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/ColorBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/ColorBlock.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/DetailBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/DetailBlock.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/Portal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/Portal.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/TargetingTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/TargetingTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Default/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Default/Trigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/IBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/IBlock.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/ITrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/ITrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/CircleParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/CircleParticle.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/Coin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/Coin.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/JumpPlate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/JumpPlate.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/JumpSphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/JumpSphere.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/SpeedBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/SpeedBlock.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/SquareParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/SquareParticle.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/StartPos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/StartPos.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Specific/TextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Specific/TextBlock.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/AlphaTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/AlphaTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/AnimateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/AnimateTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/CollisionBlockTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/CollisionBlockTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/CollisionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/CollisionTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/ColorTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/ColorTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/CountTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/CountTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/DisableBgEffectTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/DisableBgEffectTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/DisablePlayerTrailTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/DisablePlayerTrailTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/EditSfxTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/EditSfxTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/EditSongTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/EditSongTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/EnableBgEffectTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/EnableBgEffectTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/EnablePlayerTrailTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/EnablePlayerTrailTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/FollowPlayerYTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/FollowPlayerYTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/FollowTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/FollowTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/HidePlayerIconTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/HidePlayerIconTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/InstantCountTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/InstantCountTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/MoveTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/MoveTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/OnDeathTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/OnDeathTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/PickupTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/PickupTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/PulseTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/PulseTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/RotateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/RotateTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/SfxTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/SfxTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/ShakeTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/ShakeTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/ShowPlayerIconTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/ShowPlayerIconTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/SongTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/SongTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/SpawnTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/SpawnTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/StopTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/StopTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/ToggleTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/ToggleTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/GameObjects/Triggers/TouchTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/GameObjects/Triggers/TouchTrigger.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Guideline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Guideline.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Guidelines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Guidelines.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Hsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Hsv.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Level.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/LevelDuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/LevelDuration.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/LevelOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/LevelOptions.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/LevelSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/LevelSpeed.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Levels/Structures/RgbColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Levels/Structures/RgbColor.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Memory/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Memory/Access.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Memory/GameProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Memory/GameProcess.cs -------------------------------------------------------------------------------- /GeometryDashAPI/OfficialLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/OfficialLevel.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Property.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/IDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/IDescriptor.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/IGameSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/IGameSerializer.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/LLParserSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/LLParserSpan.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/MemberDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/MemberDescription.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/ObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/ObjectSerializer.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/Parsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/Parsers.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/Plist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/Plist.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/PrinterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/PrinterInfo.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/Printers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/Printers.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/SetterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/SetterInfo.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/TypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/TypeDescriptor.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Serialization/TypeDescriptorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Serialization/TypeDescriptorExtensions.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/Account.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/AccountComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/AccountComment.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/AuthorIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/AuthorIds.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/LevelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/LevelInfo.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/LevelPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/LevelPreview.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/Message.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/MessageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/MessageContent.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/MessagePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/MessagePreview.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/MusicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/MusicInfo.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Dtos/UserPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Dtos/UserPreview.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/AllowMessagesFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/AllowMessagesFrom.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/DataType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/DemonDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/DemonDifficulty.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/Difficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/Difficulty.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/DifficultyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/DifficultyIcon.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/GameModeratorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/GameModeratorType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/LengthType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/LengthType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/OfficialSong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/OfficialSong.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/SearchDemonDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/SearchDemonDifficulty.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/SearchDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/SearchDifficulty.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/SearchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/SearchType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Enums/TopType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Enums/TopType.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/GameClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/GameClient.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/IGameClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/IGameClient.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/IQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Network.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Pagination.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Parameters.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Queries/FlexibleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Queries/FlexibleQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Queries/GetLevelsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Queries/GetLevelsQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Queries/IdentifierQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Queries/IdentifierQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Queries/OnlineQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Queries/OnlineQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Queries/PasswordQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Queries/PasswordQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Queries/RandomSeedQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Queries/RandomSeedQuery.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/AccountCommentPageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/AccountCommentPageResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/AccountInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/AccountInfoResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/LevelPageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/LevelPageResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/LevelResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/LevelResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/LoginResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/LoginResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/MessagesPageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/MessagesPageResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/NoneResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/NoneResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/TopResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/TopResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/Responses/UserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/Responses/UserResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/ServerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/ServerResponse.cs -------------------------------------------------------------------------------- /GeometryDashAPI/Server/ServerResponseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/GeometryDashAPI/Server/ServerResponseHelper.cs -------------------------------------------------------------------------------- /Images/LevelResultInReadme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Images/LevelResultInReadme.png -------------------------------------------------------------------------------- /Images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Images/banner.png -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Images/logo.png -------------------------------------------------------------------------------- /Images/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Images/wave.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /Playground/CustomBlockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Playground/CustomBlockType.cs -------------------------------------------------------------------------------- /Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Playground/Playground.csproj -------------------------------------------------------------------------------- /Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/Playground/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/README.md -------------------------------------------------------------------------------- /TestObjects/AllTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/AllTypes.cs -------------------------------------------------------------------------------- /TestObjects/ComplexParserObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/ComplexParserObjects.cs -------------------------------------------------------------------------------- /TestObjects/InheritFieldFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/InheritFieldFrom.cs -------------------------------------------------------------------------------- /TestObjects/LargeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/LargeObject.cs -------------------------------------------------------------------------------- /TestObjects/MultipleSense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/MultipleSense.cs -------------------------------------------------------------------------------- /TestObjects/ObjectSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/ObjectSample.cs -------------------------------------------------------------------------------- /TestObjects/ObjectWithEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/ObjectWithEnum.cs -------------------------------------------------------------------------------- /TestObjects/SampleContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/SampleContainer.cs -------------------------------------------------------------------------------- /TestObjects/SimpleEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/SimpleEnum.cs -------------------------------------------------------------------------------- /TestObjects/StructSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/StructSample.cs -------------------------------------------------------------------------------- /TestObjects/TestObjects.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/TestObjects.csproj -------------------------------------------------------------------------------- /TestObjects/WithNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/TestObjects/WithNullable.cs -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docs/colorMapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Folleach/GeometryDashAPI/HEAD/docs/colorMapping.txt --------------------------------------------------------------------------------