bevy_mod_scripting_rune 0.8.0

Necessary functionality for Rune support with bevy_mod_scripting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use bevy_mod_scripting_core::prelude::*;

pub struct RuneDocFragment;

impl DocFragment for RuneDocFragment {
    fn merge(self, _o: Self) -> Self {
        todo!()
    }

    fn gen_docs(self) -> Result<(), ScriptError> {
        todo!()
    }

    fn name(&self) -> &'static str {
        todo!()
    }
}