mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-27 00:47:45 +00:00
I apparently had a few fields missing here. Also just some general clean up, make it the same looking character in both the Lobby and World server. I also chose Gridania as the test zone.
24 lines
491 B
Rust
24 lines
491 B
Rust
mod player_spawn;
|
|
pub use player_spawn::PlayerSpawn;
|
|
|
|
mod position;
|
|
pub use position::Position;
|
|
|
|
mod status_effect;
|
|
pub use status_effect::StatusEffect;
|
|
|
|
mod update_class_info;
|
|
pub use update_class_info::UpdateClassInfo;
|
|
|
|
mod player_setup;
|
|
pub use player_setup::PlayerSetup;
|
|
|
|
mod player_stats;
|
|
pub use player_stats::PlayerStats;
|
|
|
|
mod actor_control_self;
|
|
pub use actor_control_self::ActorControlSelf;
|
|
pub use actor_control_self::ActorControlType;
|
|
|
|
mod init_zone;
|
|
pub use init_zone::InitZone;
|