implement font and text direction; call std and mock directly instead of importing

This commit is contained in:
2020-04-18 10:45:01 +01:00
parent c5604f2964
commit cc0780b9cd
4 changed files with 77 additions and 14 deletions

View File

@@ -5,6 +5,7 @@ pub mod colour;
pub mod dialogue;
pub mod ending;
pub mod exit;
pub mod text;
pub mod game;
pub mod palette;
pub mod image;
@@ -21,6 +22,7 @@ use colour::Colour;
use dialogue::Dialogue;
use ending::Ending;
use exit::{Transition, Exit};
use text::{Font, TextDirection};
use game::Game;
use palette::Palette;
use image::Image;