README.md (1156B)
1 # Sevivon 2 3 **Sevivon** is an open-source multiplayer [dreidel][dreidel] game for 4 mobile devices, built with [Godot][godot]. 5 6 ## Status 7 8 This implementation is backend-first. The game is being written in 9 Godotscript without graphics, and will be restructered after the fact 10 to facilitate the addition of graphics. 11 12 ## Structure 13 14 The project's structure is based on the Godot [project 15 organization][organization] guidelines, and holds to the following 16 ASCII tree: 17 18 ``` 19 sevivon/ 20 ├─ src/ 21 │ ├─ scenes/ 22 │ │ ├─ example_scene/ 23 │ │ │ ├─ *.tscn 24 │ │ │ ├─ *.gltf 25 │ │ │ ├─ *.material 26 │ │ ├─ main.tscn 27 │ ├─ scripts/ 28 │ │ ├─ *.gd 29 ├─ .gitignore 30 ├─ COPYING 31 ├─ README.md 32 ├─ default_env.tres 33 ├─ icon.png 34 ├─ project.godot 35 ``` 36 37 ## Contributing 38 39 All contributions are welcome! 40 41 ## License 42 43 This project is licensed under the [AGPL][license]. 44 45 [dreidel]: https://en.wikipedia.org/wiki/Dreidel 46 [godot]: https://godotengine.org/ 47 [organization]: https://docs.godotengine.org/en/stable/getting_started/workflow/project_setup/project_organization.html 48 [license]: ./COPYING 49