doukutsu-rs/src/player/player_list.rs

8 lines
131 B
Rust
Raw Normal View History

2021-10-15 14:36:05 +00:00
pub struct RemotePlayerList {}
2021-10-14 04:54:11 +00:00
impl RemotePlayerList {
pub fn new() -> RemotePlayerList {
2021-10-15 14:36:05 +00:00
RemotePlayerList {}
2021-10-14 04:54:11 +00:00
}
}