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