/*
* This file is part of sdbclient
* Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
*
* Licensed under GPL-3.0-only.
* See LICENSE for licensing information.
*/
use bevy::prelude::Resource;
/// Runtime data for use when in game
#[derive(Resource)]
pub(crate) struct RTDGame {}
impl Default for RTDGame {
fn default() -> Self {
Self {}
}
}