go_game_types 1.0.0

Core type definitions for Go game libraries
Documentation
1
2
3
4
5
6
7
mod player;
mod vertex;
mod color;

pub use player::Player;
pub use vertex::{Vertex, MAX_GOBAN_SIZE, LEFT_SENTINELS, RIGHT_SENTINELS, TOP_SENTINELS, BOTTOM_SENTINELS};
pub use color::Color;