formatted
This commit is contained in:
parent
3096386ad1
commit
8bae1c7668
|
@ -3,7 +3,6 @@ extern crate proc_macro;
|
||||||
use proc_macro::TokenStream;
|
use proc_macro::TokenStream;
|
||||||
use quote::quote;
|
use quote::quote;
|
||||||
|
|
||||||
|
|
||||||
#[proc_macro_derive(CreateMonsters)]
|
#[proc_macro_derive(CreateMonsters)]
|
||||||
pub fn create_monsters(input: TokenStream) -> TokenStream {
|
pub fn create_monsters(input: TokenStream) -> TokenStream {
|
||||||
let input = syn::parse_macro_input!(input as syn::File);
|
let input = syn::parse_macro_input!(input as syn::File);
|
||||||
|
|
|
@ -2,7 +2,6 @@ use std::{collections::HashMap, ops::RangeInclusive};
|
||||||
|
|
||||||
use crate::{monster::MonsterTypes, room::RoomType};
|
use crate::{monster::MonsterTypes, room::RoomType};
|
||||||
|
|
||||||
|
|
||||||
/// the number of rooms in vertical direction
|
/// the number of rooms in vertical direction
|
||||||
pub const ROOMS_HORIZONTAL: usize = 8;
|
pub const ROOMS_HORIZONTAL: usize = 8;
|
||||||
/// the number of rooms in horizontal direction
|
/// the number of rooms in horizontal direction
|
||||||
|
|
|
@ -17,7 +17,11 @@ impl LevelWidget {
|
||||||
buf[(x, y)].set_symbol(symbol).set_bg(bg).set_fg(fg);
|
buf[(x, y)].set_symbol(symbol).set_bg(bg).set_fg(fg);
|
||||||
}
|
}
|
||||||
fn set_bold_cell(&self, buf: &mut Buffer, x: u16, y: u16, symbol: &str, fg: Color, bg: Color) {
|
fn set_bold_cell(&self, buf: &mut Buffer, x: u16, y: u16, symbol: &str, fg: Color, bg: Color) {
|
||||||
buf[(x, y)].set_symbol(symbol).set_bg(bg).set_fg(fg).set_style(Style::new().add_modifier(Modifier::BOLD));
|
buf[(x, y)]
|
||||||
|
.set_symbol(symbol)
|
||||||
|
.set_bg(bg)
|
||||||
|
.set_fg(fg)
|
||||||
|
.set_style(Style::new().add_modifier(Modifier::BOLD));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue