Skip to content

Instantly share code, notes, and snippets.

View asobininn's full-sized avatar

asobininn

View GitHub Profile
@asobininn
asobininn / guess_mvu.rs
Last active September 4, 2025 18:49
数あてゲーム
//! 推理系ゲーム特化のMVUアーキテクチャ
use std::{fmt::Debug, marker::PhantomData};
/// 推理系ゲーム共通の状態
#[derive(Debug, Clone, PartialEq)]
pub enum GamePhase {
InProgress,
Success,
Failure,