aboutsummaryrefslogtreecommitdiff
path: root/mingling_core
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-04-27 11:09:35 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-04-27 11:29:26 +0800
commitae91bf2f6412edee65660085811248e0127fa97b (patch)
tree504a055510a7592e64ec382cbef97cded7c7e69f /mingling_core
parent704eb899babd85125d29cf41315e9df90515046f (diff)
Remove `marker::NextProcess` and generate it via `gen_program!`
Diffstat (limited to 'mingling_core')
-rw-r--r--mingling_core/src/lib.rs6
-rw-r--r--mingling_core/src/markers.rs2
-rw-r--r--mingling_core/src/markers/next_process.rs2
3 files changed, 0 insertions, 10 deletions
diff --git a/mingling_core/src/lib.rs b/mingling_core/src/lib.rs
index aee0df6..9e65e40 100644
--- a/mingling_core/src/lib.rs
+++ b/mingling_core/src/lib.rs
@@ -10,7 +10,6 @@
mod any;
mod asset;
-mod markers;
mod program;
mod renderer;
@@ -41,11 +40,6 @@ pub use crate::program::*;
pub use crate::renderer::render_result::*;
-/// All marker types of `Mingling` that serve no practical purpose
-pub mod marker {
- pub use crate::markers::next_process::*;
-}
-
/// `Mingling`'s Program initialization system
pub mod setup {
pub use crate::program::setup::*;
diff --git a/mingling_core/src/markers.rs b/mingling_core/src/markers.rs
deleted file mode 100644
index d71434b..0000000
--- a/mingling_core/src/markers.rs
+++ /dev/null
@@ -1,2 +0,0 @@
-#[doc(hidden)]
-pub mod next_process;
diff --git a/mingling_core/src/markers/next_process.rs b/mingling_core/src/markers/next_process.rs
deleted file mode 100644
index 9169900..0000000
--- a/mingling_core/src/markers/next_process.rs
+++ /dev/null
@@ -1,2 +0,0 @@
-#[allow(dead_code)]
-pub struct NextProcess;