diff options
| -rw-r--r-- | .idea/runConfigurations/Export_Project.xml | 20 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | documents/临时/About Toolchain - 关于 Rust 工具链.md | 17 | ||||
| -rw-r--r-- | documents/临时/路线.md | 4 |
4 files changed, 42 insertions, 1 deletions
diff --git a/.idea/runConfigurations/Export_Project.xml b/.idea/runConfigurations/Export_Project.xml new file mode 100644 index 0000000..3961e0d --- /dev/null +++ b/.idea/runConfigurations/Export_Project.xml @@ -0,0 +1,20 @@ +<component name="ProjectRunConfigurationManager"> + <configuration default="false" name="Export Project" type="CargoCommandRunConfiguration" factoryName="Cargo Command" folderName="Export"> + <option name="buildProfileId" value="dev" /> + <option name="command" value="run --manifest-path .\export\Cargo.toml --bin export_project" /> + <option name="workingDirectory" value="file://$PROJECT_DIR$" /> + <envs /> + <option name="emulateTerminal" value="true" /> + <option name="channel" value="DEFAULT" /> + <option name="requiredFeatures" value="true" /> + <option name="allFeatures" value="false" /> + <option name="withSudo" value="false" /> + <option name="buildTarget" value="REMOTE" /> + <option name="backtrace" value="SHORT" /> + <option name="isRedirectInput" value="false" /> + <option name="redirectInputPath" value="" /> + <method v="2"> + <option name="RunConfigurationTask" enabled="true" run_configuration_name="Final Build" run_configuration_type="CargoCommandRunConfiguration" /> + </method> + </configuration> +</component>
\ No newline at end of file @@ -20,7 +20,7 @@ cargo build --workspace --release ``` -### 发布当前项目 +### 打包当前项目 ```shell cargo run --manifest-path .\export\Cargo.toml --bin export_project diff --git a/documents/临时/About Toolchain - 关于 Rust 工具链.md b/documents/临时/About Toolchain - 关于 Rust 工具链.md new file mode 100644 index 0000000..f3e947b --- /dev/null +++ b/documents/临时/About Toolchain - 关于 Rust 工具链.md @@ -0,0 +1,17 @@ +# 关于工具链的使用 + +## Core + +| 平台 | 工具链名称 | +| ------- | ----------------------------- | +| Windows | stable-x86_64-pc-windows-msvc | +| Linux | NONE | +| Mac OS | NONE | + +## Console + +| 平台 | 工具链名称 | +| ------- | ----------------------------- | +| Windows | stable-x86_64-pc-windows-msvc | +| Linux | NONE | +| Mac OS | NONE | diff --git a/documents/临时/路线.md b/documents/临时/路线.md new file mode 100644 index 0000000..6f4481c --- /dev/null +++ b/documents/临时/路线.md @@ -0,0 +1,4 @@ +1. 使用 Bevy 完成客户端图形界面的制作 +2. 完善核心层的事件逻辑处理 +3. 完善Csharp的绑定 +4. ...
\ No newline at end of file |
