summaryrefslogtreecommitdiff
path: root/src/strategy.rs
blob: 37d22655b3340ffa90a63cdee4fb20ec4074aec9 (plain)
1
2
3
4
5
6
use crate::command::Command;
use crate::game::GameBoard;

pub fn choose_move(_state: &GameBoard) -> Command {
    Command::DoNothing
}