summaryrefslogtreecommitdiff
path: root/_prototype/player
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-22 20:24:18 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-22 20:24:18 +0800
commit277bc93f84b298c7cb24e136f67eb237fb3a68a2 (patch)
tree3a678677882e9884a2a17fa828358d1c9fd3dd9c /_prototype/player
parent3e3ffa97985ed588ef46e007edb7507189a65e8e (diff)
Move prototype files to _prototype directoryHEADmaster
Diffstat (limited to '_prototype/player')
-rw-r--r--_prototype/player/Cargo.toml6
-rw-r--r--_prototype/player/src/lib.rs3
2 files changed, 9 insertions, 0 deletions
diff --git a/_prototype/player/Cargo.toml b/_prototype/player/Cargo.toml
new file mode 100644
index 0000000..69108fd
--- /dev/null
+++ b/_prototype/player/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "markdialog_player"
+edition = "2024"
+version.workspace = true
+
+[dependencies]
diff --git a/_prototype/player/src/lib.rs b/_prototype/player/src/lib.rs
new file mode 100644
index 0000000..4723252
--- /dev/null
+++ b/_prototype/player/src/lib.rs
@@ -0,0 +1,3 @@
+pub fn player_main() {
+ println!("Hello Markdialog Player")
+}