gmon aliases mon
parent
9130797eec
commit
e94a802034
|
|
@ -0,0 +1,7 @@
|
|||
use ::mon::*;
|
||||
|
||||
pub type BattleInstance = mon::battle::Instance;
|
||||
pub type BattleEngine = mon::battle::Engine;
|
||||
pub type BattleTeam = mon::battle::Team;
|
||||
pub type BattleEvent = mon::battle::Event;
|
||||
pub type BattleMove = mon::battle::Move;
|
||||
|
|
@ -3,7 +3,7 @@ use godot::prelude::*;
|
|||
struct MyExtension;
|
||||
|
||||
#[gdextension]
|
||||
unsafe impl ExtensionLibrary for MyExtension {
|
||||
}
|
||||
unsafe impl ExtensionLibrary for MyExtension {}
|
||||
|
||||
pub mod src;
|
||||
pub mod battle;
|
||||
pub mod mon;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
use ::mon::*;
|
||||
|
||||
pub type MonInstance = mon::mon::Instance;
|
||||
pub type MonSpecies = mon::mon::Species;
|
||||
pub type MonDex = mon::mon::Dex;
|
||||
|
|
@ -1 +1 @@
|
|||
pub mod src;
|
||||
pub mod mon;
|
||||
|
|
|
|||
Loading…
Reference in New Issue