librollenspielsache 0.1.2

API for working with tabletop RPG entities.
Documentation
1
2
3
4
5
6
7
//! Supported RPG-specific rules.

use crate::character::Character;

trait GameSystem {
    fn attack(aggressor: &mut Character, recipient: &mut Character);
}