A card game engine for TCGs, primarily Magic: The Gathering but with support for others
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adding client crate

+29 -1
+1 -1
Cargo.toml
··· 1 1 [workspace] 2 - members = ["managrove-core", "server"] 2 + members = ["managrove-core", "server", "client/gdext"] 3 3 resolver = "3"
+9
client/gdext/Cargo.toml
··· 1 + [package] 2 + name = "client" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies] 7 + 8 + [dependencies.managrove-core] 9 + workspace = true
+19
client/project.godot
··· 1 + ; Engine configuration file. 2 + ; It's best edited using the editor UI and not directly, 3 + ; since the parameters that go here are not all obvious. 4 + ; 5 + ; Format: 6 + ; [section] ; section goes between [] 7 + ; param=value ; assign values to parameters 8 + 9 + config_version=5 10 + 11 + [application] 12 + 13 + config/name="ManaGrove" 14 + config/features=PackedStringArray("4.6") 15 + 16 + [display] 17 + 18 + window/size/viewport_width=1920 19 + window/size/viewport_height=1080