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 RhaiDocFragment;

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

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

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