restore after broken git

This commit is contained in:
nquidox 2026-04-10 20:28:55 +03:00
commit 138c62ac34
51 changed files with 7559 additions and 0 deletions

View file

@ -0,0 +1,6 @@
use bevy::prelude::Message;
#[derive(Message)]
pub struct ButtonClickMessage<T: Send + Sync + 'static> {
pub action: T,
}