galeon-engine 0.5.1

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

//! Applying #[galeon_engine::command] to a tuple struct should fail.

#[galeon_engine::command]
pub struct BadCommand(u64, u64);

fn main() {}