mirror of
https://github.com/Zenithsiz/dcb.git
synced 2026-02-09 11:48:16 +00:00
18 lines
378 B
Rust
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;
|