WIP: Some stuff

This commit is contained in:
2025-02-19 09:32:03 +01:00
parent 396b28dba1
commit 0daaaac0f9
19 changed files with 268 additions and 26 deletions

View File

@ -6,12 +6,12 @@ use std;
#[class(base=Node)]
// EntryPoint should decide whether the game should be launched in the
// server or the playing mode and load corresponding resources
struct EntryPoint {
struct EntryPointRs {
base: Base<Node>,
}
#[godot_api]
impl INode for EntryPoint {
impl INode for EntryPointRs {
fn init(base: Base<Node>) -> Self {
Self { base }
}
@ -20,4 +20,4 @@ impl INode for EntryPoint {
}
#[godot_api]
impl EntryPoint {}
impl EntryPointRs {}