├── .editorconfig ├── .github ├── dependabot.yaml └── workflows │ ├── build-debug.yaml │ ├── build-release.yaml │ ├── prevent-github-change.yaml │ └── stale.yaml ├── .gitignore ├── Directory.Build.props ├── Icon.png ├── LICENSE ├── README.md ├── StructureOfArraysGenerator.sln ├── docs ├── graph.xlsx └── images.pptx ├── opensource.snk ├── sandbox ├── Benchmark │ ├── Benchmark.csproj │ └── Program.cs ├── ConsoleApp1 │ ├── ConsoleApp1.csproj │ └── Program.cs └── ConsoleAppRoslyn3 │ ├── ConsoleAppRoslyn3.csproj │ └── Program.cs ├── src ├── StructureOfArraysGenerator.Roslyn3 │ ├── Generator.Roslyn3.cs │ ├── IncrementalGeneratorShims.cs │ ├── Properties │ │ └── launchSettings.json │ └── StructureOfArraysGenerator.Roslyn3.csproj ├── StructureOfArraysGenerator.Unity │ ├── .vsconfig │ ├── Assets │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── PackageExporter.cs │ │ │ └── PackageExporter.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── StructureOfArraysGenerator.meta │ │ │ ├── StructureOfArraysGenerator │ │ │ │ ├── Runtime.meta │ │ │ │ ├── Runtime │ │ │ │ │ ├── StructureOfArraysGenerator.Roslyn3.dll │ │ │ │ │ └── StructureOfArraysGenerator.Roslyn3.dll.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ └── System.Runtime.CompilerServices.Unsafe.dll.meta │ │ ├── Scenes.meta │ │ └── Scenes │ │ │ ├── SampleScene.unity │ │ │ ├── SampleScene.unity.meta │ │ │ ├── SampleScript.cs │ │ │ └── SampleScript.cs.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── MemorySettings.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── SceneTemplateSettings.json │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ ├── XRSettings.asset │ │ └── boot.config │ └── UserSettings │ │ ├── EditorUserSettings.asset │ │ └── Search.settings └── StructureOfArraysGenerator │ ├── DiagnosticDescriptors.cs │ ├── EmitHelper.cs │ ├── Generator.cs │ ├── MetaMember.cs │ ├── Properties │ └── launchSettings.json │ └── StructureOfArraysGenerator.csproj └── tests ├── StructureOfArraysGenerator.Tests.Roslyn3 └── StructureOfArraysGenerator.Tests.Roslyn3.csproj └── StructureOfArraysGenerator.Tests ├── DiagnosticsTest.cs ├── MemoryPackTest.cs ├── MultiArrayTest.cs ├── MultiListTest.cs ├── StructureOfArraysGenerator.Tests.csproj └── Utils └── CSharpGeneratorRunner.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/build-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.github/workflows/build-debug.yaml -------------------------------------------------------------------------------- /.github/workflows/build-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.github/workflows/build-release.yaml -------------------------------------------------------------------------------- /.github/workflows/prevent-github-change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.github/workflows/prevent-github-change.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/README.md -------------------------------------------------------------------------------- /StructureOfArraysGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/StructureOfArraysGenerator.sln -------------------------------------------------------------------------------- /docs/graph.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/docs/graph.xlsx -------------------------------------------------------------------------------- /docs/images.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/docs/images.pptx -------------------------------------------------------------------------------- /opensource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/opensource.snk -------------------------------------------------------------------------------- /sandbox/Benchmark/Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/sandbox/Benchmark/Benchmark.csproj -------------------------------------------------------------------------------- /sandbox/Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/sandbox/Benchmark/Program.cs -------------------------------------------------------------------------------- /sandbox/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/sandbox/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /sandbox/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/sandbox/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /sandbox/ConsoleAppRoslyn3/ConsoleAppRoslyn3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/sandbox/ConsoleAppRoslyn3/ConsoleAppRoslyn3.csproj -------------------------------------------------------------------------------- /sandbox/ConsoleAppRoslyn3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/sandbox/ConsoleAppRoslyn3/Program.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Roslyn3/Generator.Roslyn3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Roslyn3/Generator.Roslyn3.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Roslyn3/IncrementalGeneratorShims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Roslyn3/IncrementalGeneratorShims.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Roslyn3/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Roslyn3/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Roslyn3/StructureOfArraysGenerator.Roslyn3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Roslyn3/StructureOfArraysGenerator.Roslyn3.csproj -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/.vsconfig -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Editor.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Editor/PackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Editor/PackageExporter.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Editor/PackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Editor/PackageExporter.cs.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/Runtime.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/Runtime/StructureOfArraysGenerator.Roslyn3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/Runtime/StructureOfArraysGenerator.Roslyn3.dll -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/Runtime/StructureOfArraysGenerator.Roslyn3.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/Runtime/StructureOfArraysGenerator.Roslyn3.dll.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/package.json -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/StructureOfArraysGenerator/package.json.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.dll.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScript.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScript.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Assets/Scenes/SampleScript.cs.meta -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Packages/manifest.json -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/Packages/packages-lock.json -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator.Unity/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator.Unity/UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator/DiagnosticDescriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator/DiagnosticDescriptors.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator/EmitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator/EmitHelper.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator/Generator.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator/MetaMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator/MetaMember.cs -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/StructureOfArraysGenerator/StructureOfArraysGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/src/StructureOfArraysGenerator/StructureOfArraysGenerator.csproj -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests.Roslyn3/StructureOfArraysGenerator.Tests.Roslyn3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests.Roslyn3/StructureOfArraysGenerator.Tests.Roslyn3.csproj -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests/DiagnosticsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests/DiagnosticsTest.cs -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests/MemoryPackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests/MemoryPackTest.cs -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests/MultiArrayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests/MultiArrayTest.cs -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests/MultiListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests/MultiListTest.cs -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests/StructureOfArraysGenerator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests/StructureOfArraysGenerator.Tests.csproj -------------------------------------------------------------------------------- /tests/StructureOfArraysGenerator.Tests/Utils/CSharpGeneratorRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/StructureOfArraysGenerator/HEAD/tests/StructureOfArraysGenerator.Tests/Utils/CSharpGeneratorRunner.cs --------------------------------------------------------------------------------