mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
9 lines
156 B
Rust
9 lines
156 B
Rust
use specs::{Component, NullStorage};
|
|
|
|
#[derive(Clone, Copy, Default)]
|
|
pub struct Admin;
|
|
|
|
impl Component for Admin {
|
|
type Storage = NullStorage<Self>;
|
|
}
|