bevy_cards 0.18.0

A simple, no dependency bevy plugin for making card games
Documentation
1
2
3
4
5
6
use bevy::{ecs::resource::Resource, math::Vec2};

#[derive(Resource)]
pub struct BevyCardsSettings {
    pub card_size: Vec2,
}