File size: 655 Bytes
e5928e2 c3c8bfb e5928e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
---
license: mit
task_categories:
- text-classification
language:
- en
tags:
- code
pretty_name: ShooterGTU Architecture
size_categories:
- n<1K
---
# ShooterGTU Architecture Dataset
This dataset contains a JSON file describing the event-driven architecture
of the ShooterGTU game. It includes core managers, scenes, events, and
dependencies.
## Files
- `architecture.json`: The main JSON with metadata, core components,
hierarchy layers, etc.
## Usage
You can load this dataset using the `datasets` library:
```python
from datasets import load_dataset
dataset = load_dataset("username/shootergtu-architecture", data_files="architecture.json") |