-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
73 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ mod consts; | |
mod fight; | ||
mod fight_items; | ||
mod player; | ||
mod ui; | ||
mod utils; | ||
mod weapons; | ||
mod zenith; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mod multi_enter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use godot::engine::{Button, IButton}; | ||
use godot::prelude::*; | ||
|
||
#[derive(GodotClass)] | ||
#[class(base = Button)] | ||
struct MultiEnter { | ||
base: Base<Button>, | ||
} | ||
|
||
#[godot_api()] | ||
impl IButton for MultiEnter { | ||
fn init(base: Base<Button>) -> Self { | ||
Self { base } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# LANGUAGE translation for Zenith for the following files: | ||
# res://scenes/multi_game.tscn | ||
# | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Zenith\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8-bit\n" | ||
|
||
#: scenes/multi_game.tscn | ||
msgid "OK" | ||
msgstr "" | ||
|
||
#: scenes/multi_game.tscn | ||
msgid "Warning!" | ||
msgstr "" | ||
|
||
#: scenes/multi_game.tscn | ||
msgid "IP" | ||
msgstr "" | ||
|
||
#: scenes/multi_game.tscn | ||
msgid "like 127.0.0.1:6371" | ||
msgstr "" | ||
|
||
#: scenes/multi_game.tscn | ||
msgid "Player" | ||
msgstr "" | ||
|
||
#: scenes/multi_game.tscn | ||
msgid "Limuy" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters