This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add many changers for core and core models
start working at plugin downloader. start thinking about rewriting code... helldivers is't bad game :D
- Loading branch information
Showing
28 changed files
with
755 additions
and
902 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[[metaData]] | ||
|
||
[metaData.Core] | ||
name = "Purpur" | ||
version = "1.15" | ||
name = "Paper" | ||
version = "1.20.4" | ||
build = "462" |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[core] | ||
# Выбери один из вариантов: vanilla, spigot, bucket, paper, purpur, forge, neoForge, fabric, folia, waterfall, velocity | ||
provider = "purpur" | ||
version = "1.15" | ||
# build = "459" | ||
# Выбери один из вариантов: vanilla, paper, purpur, forge, neoForge, fabric, folia, waterfall, velocity | ||
provider = "paper" | ||
version = "1.20.4" | ||
# build = "2160" | ||
# Замораживать ли объекты при наличии в системе | ||
freeze = false | ||
force_update = false | ||
|
@@ -24,3 +24,7 @@ | |
[additions] | ||
configPluguinsFrom = "[email protected]:TOwInOK/test.git" | ||
key = "SUPEREKLy" | ||
path_to_core = "core/" | ||
# path_to_mods = "" | ||
# path_to_plugins = "" | ||
path_to_configs = "D:/Rust/MinecraftAddonController/config.lock" |
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
use crate::{config::Config, lock::lock::Lock}; | ||
|
||
//ff | ||
pub struct Controller<'config, 'lock> { | ||
config: &'config mut Config, | ||
lock: &'lock mut Lock, | ||
} | ||
|
||
impl<'config, 'lock> Controller<'config, 'lock> { | ||
pub fn new(config: &'config mut Config, lock: &'lock mut Lock) -> Self { | ||
Self { config, lock } | ||
} | ||
} |
Oops, something went wrong.