Update README file structure

This commit is contained in:
JeremyStar™ 2024-04-03 19:51:44 +02:00
parent 5f2f599a99
commit 3a65e7bac0
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -137,7 +137,7 @@ Here's a file structure for this project:
│   │   │   ├── coreconfiguration.md │   │   │   ├── coreconfiguration.md
│   │   │   ├── core.md │   │   │   ├── core.md
│   │   │   ├── coretypes.md │   │   │   ├── coretypes.md
│   │   │   ├── edl.md │   │   │   ├── erm.md
│   │   │   ├── loggerinstance.md │   │   │   ├── loggerinstance.md
│   │   │   ├── logger.md │   │   │   ├── logger.md
│   │   │   ├── misc.md │   │   │   ├── misc.md
@ -170,7 +170,7 @@ Here's a file structure for this project:
│   │   ├── loggerinstance.gd │   │   ├── loggerinstance.gd
│   │   └── types.gd │   │   └── types.gd
│   ├── core.gd │   ├── core.gd
│   ├── edl.gd │   ├── erm.gd
│   ├── logger.gd │   ├── logger.gd
│   ├── logui.gd │   ├── logui.gd
│   ├── misc.gd │   ├── misc.gd
@ -178,11 +178,14 @@ Here's a file structure for this project:
│   └── storage.gd │   └── storage.gd
├── Test.gd Test script, only for testing during development ├── Test.gd Test script, only for testing during development
├── tests For unit testing ├── tests For unit testing
│   ├── custom_module.gd A custom module used in tests/unit/core.gd │ ├── test_resources Scripts, scenes and other resources used in tests
│   ├── unit The actual unit tests that are executed by Bessere Tests │ │   ├── custom_module.gd A custom module used in 'tests/unit/core.gd'
│   │   ├── core.gd │ │   ├── scene.gd Updates the callback value
│   │   ├── misc.gd │ │   └── scene.tscn Loads 'scene.gd'
│   │   └── z_cleanup.gd Ensures all nodes are cleaned up, throws an error otherwise. │ ├── unit The actual unit tests
│ │   ├── core.gd
│ │   ├── misc.gd
│ │   └── sms.gd
│   └── unitbase.gd The base for all of our unit tests, includes functions and variables used in all unit tests. │   └── unitbase.gd The base for all of our unit tests, includes functions and variables used in all unit tests.
└── Test.tscn Simply executes `Test.gd` └── Test.tscn Simply executes `Test.gd`
``` ```