Files
dcb/src/game/card.rs
Filipe Rodrigues 280bdac119 All code is now formatted.
Started using `err_impl::Error` where possible.
2020-05-01 11:29:01 +01:00

18 lines
378 B
Rust

//! Cards
//!
//! This module contains all cards and card properties that are stored within the game,
//! as well as the card table itself, of all of the cards in the game.
// Modules
pub mod digimon;
pub mod digivolve;
pub mod item;
pub mod property;
pub mod table;
// Exports
pub use digimon::Digimon;
pub use digivolve::Digivolve;
pub use item::Item;
pub use table::Table;