DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 35004e352aee011d37ab60df4939352463ffea17 deck-builder/client/src/game_status/mod.rs -rw-r--r-- 388 bytes
35004e35 — skye feat(clint): add seed field to action 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * This file is part of laurelin_client
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * 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<Action>) -> Self {
        Self { }
    }
}