beast1984 1.0.2

An ASCII game built in rust in loving memory of the 1984 hit BEAST by Dan Baker, Alan Brown, Mark Hamilton and Derrick Shadel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! this module contains all enemies

pub mod common;
pub use common::*;

pub mod common_beast;
pub use common_beast::*;

pub mod egg;
pub use egg::*;

pub mod hatched_beast;
pub use hatched_beast::*;

pub mod super_beast;
pub use super_beast::*;