1 2 3 4 5 6 7 8 9 10 11
use crate::loader::LootTableData; #[derive(Debug, Clone)] pub struct LootTable {} impl From<LootTableData> for LootTable { fn from(data: LootTableData) -> LootTable { //TODO: nyi LootTable {} } }