mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
9 lines
143 B
Rust
9 lines
143 B
Rust
|
use crate::site::Site;
|
||
|
use common::store::{Id, Store};
|
||
|
|
||
|
#[derive(Default)]
|
||
|
pub struct Index {
|
||
|
pub time: f32,
|
||
|
pub sites: Store<Site>,
|
||
|
}
|