mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
a4b9230f03
Fixed `crossbeam-queue` being referenced twice in the lockfile
9 lines
282 B
Rust
9 lines
282 B
Rust
use serde::{Deserialize, Serialize};
|
|
use specs::{Component, DerefFlaggedStorage, NullStorage};
|
|
|
|
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
|
|
pub struct CanBuild;
|
|
impl Component for CanBuild {
|
|
type Storage = DerefFlaggedStorage<Self, NullStorage<Self>>;
|
|
}
|