8 lines
167 B
Rust
8 lines
167 B
Rust
use godot::{classes::HBoxContainer, prelude::*};
|
|
|
|
#[derive(GodotClass)]
|
|
#[class(base=HBoxContainer, init)]
|
|
pub struct PlayerListing {
|
|
base: Base<HBoxContainer>,
|
|
}
|