This commit is contained in:
nora 2023-04-18 12:21:37 +02:00
parent 0bae67e931
commit cf22fcd5fd
2 changed files with 2 additions and 3 deletions

View file

@ -47,7 +47,7 @@ pub struct TileDef
where where
{ {
/// Whether the tile emits light, and the light source offset /// Whether the tile emits light, and the light source offset
pub layer: <Bg as TileLayer>::SpecificDef, pub layer: (),
//ADD pub blend_graphic: String, //ADD pub blend_graphic: String,
} }

View file

@ -46,8 +46,7 @@ impl TileLayer for Fg {
pub struct TileDef pub struct TileDef
where where
{ {
/// Whether the tile emits light, and the light source offset pub layer: (),
pub layer: <Bg as TileLayer>::SpecificDef,
//ADD pub blend_graphic: String, //ADD pub blend_graphic: String,
} }