numples 1.2.0

Yet another colourful sudoku playing game.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use bevy::prelude::*;

use crate::game::Level;

#[derive(Debug, Clone, PartialEq, Eq, Hash, Event)]
pub enum NumplesEvent {

    StartGame(Level),
    AbortGame,
    PauseGame,
    RenderBoard,
}