Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ShooterGTU Architecture Dataset
|
| 2 |
+
|
| 3 |
+
This dataset contains a JSON file describing the event-driven architecture
|
| 4 |
+
of the ShooterGTU game. It includes core managers, scenes, events, and
|
| 5 |
+
dependencies.
|
| 6 |
+
|
| 7 |
+
## Files
|
| 8 |
+
|
| 9 |
+
- `architecture.json`: The main JSON with metadata, core components,
|
| 10 |
+
hierarchy layers, etc.
|
| 11 |
+
|
| 12 |
+
## Usage
|
| 13 |
+
|
| 14 |
+
You can load this dataset using the `datasets` library:
|
| 15 |
+
```python
|
| 16 |
+
from datasets import load_dataset
|
| 17 |
+
|
| 18 |
+
dataset = load_dataset("username/shootergtu-architecture", data_files="architecture.json")
|