galeon-engine 0.1.1

Core ECS game engine: entities, components, systems, and scheduling.
Documentation
1
2
3
4
5
6
// SPDX-License-Identifier: AGPL-3.0-only OR Commercial

/// Marker trait for types that can be stored as ECS components.
///
/// Derive with `#[derive(Component)]` from `galeon_engine_macros`.
pub trait Component: Send + Sync + 'static {}