/* * This file is part of laurelin_client * Copyright (C) 2023 Jonni Liljamo * * Licensed under GPL-3.0-only. * See LICENSE for licensing information. */ use crate::api::game::Action; mod parser; /// constructed from a vector of [`Action`]s pub struct GameStatus { } impl GameStatus { pub fn new(actions: Vec) -> Self { Self { } } }