diff options
| author | Weicao Mao <1992414357@qq.com> | 2025-04-12 08:11:27 +0800 |
|---|---|---|
| committer | Weicao-CatilGrass <1992414357@qq.com> | 2025-04-12 08:11:27 +0800 |
| commit | 330ae0148ac7f4653c54563278c4e5a810ccba08 (patch) | |
| tree | ab836c70d6d50939f93bb82c7b30beadb270de45 /core | |
| parent | c67ce979d058fc40cb849570eeeee38d196c4cd5 (diff) | |
Initial commit
Diffstat (limited to 'core')
| -rw-r--r-- | core/Cargo.lock | 7 | ||||
| -rw-r--r-- | core/Cargo.toml | 14 | ||||
| -rw-r--r-- | core/desktop.ini | 6 | ||||
| -rw-r--r-- | core/src/main.rs | 3 |
4 files changed, 30 insertions, 0 deletions
diff --git a/core/Cargo.lock b/core/Cargo.lock new file mode 100644 index 0000000..1455de1 --- /dev/null +++ b/core/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "phantomlink-gamepad-core" +version = "0.1.0" diff --git a/core/Cargo.toml b/core/Cargo.toml new file mode 100644 index 0000000..674ec5f --- /dev/null +++ b/core/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "phantomlink-gamepad-core" +authors = [ "Weicao-CatilGrass" ] +description = "A mobile device control solution for local multiplayer gaming, featuring an in-game interface, controller client, and support for universal devices." + +homepage = "https://github.com/Weicao-CatilGrass/PhantomLink-Gamepad" +repository = "https://github.com/Weicao-CatilGrass/PhantomLink-Gamepad" +readme = "../README.md" + +version = "0.1.0" +edition = "2024" + +[dependencies] + diff --git a/core/desktop.ini b/core/desktop.ini new file mode 100644 index 0000000..edde22e --- /dev/null +++ b/core/desktop.ini @@ -0,0 +1,6 @@ +[.ShellClassInfo] +IconResource=..\.init\Folder-Ico\ico\rust-2.ico,0 +[ViewState] +Mode= +Vid= +FolderType=Generic diff --git a/core/src/main.rs b/core/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/core/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |
