Add project structure: directories, Main scene, and README

This commit is contained in:
Will Stuckey
2025-10-28 12:03:34 -05:00
parent 40e6524805
commit 4c6ce0598a
6 changed files with 85 additions and 3 deletions

38
README.md Normal file
View File

@@ -0,0 +1,38 @@
# Voider
A game project built with Godot 4.5 and C#.
## Libraries
This project uses the following custom libraries:
- **EinSoftworks.Utilities** - Math and utility functions
- **EinSoftworks.Input** - Input management system
- **EinSoftworks.Events** - Event system for game communication
## Project Structure
```
voider/
├── Scenes/ # Game scenes (.tscn files)
├── Scripts/ # C# scripts
├── Resources/ # Game resources
│ ├── Textures/ # Images and sprites
│ ├── Audio/ # Sound effects and music
│ └── Fonts/ # Font files
├── Prefabs/ # Reusable scene prefabs
└── UI/ # User interface scenes
```
## Development
### Building
```bash
dotnet build
```
### Running
Open the project in Godot 4.5 and press F5 to run.
## License
TBD