velho/rust/src/lib.rs

21 lines
352 B
Rust

use godot::prelude::*;
pub struct VelhoExtension;
mod gathering;
mod grid;
mod inventory;
mod turn;
mod utils;
pub mod prelude {
pub use super::gathering::*;
pub use super::grid::*;
pub use super::inventory::*;
pub use super::turn::*;
pub use super::utils::*;
}
#[gdextension]
unsafe impl ExtensionLibrary for VelhoExtension {}