add comment storage to boards
This commit is contained in:
parent
0b9f41cbf6
commit
5c48b531f6
13 changed files with 219 additions and 113 deletions
|
@ -1,10 +1,11 @@
|
|||
use std::ops::Add;
|
||||
|
||||
use raylib::prelude::*;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
pub type PosInt = i16;
|
||||
|
||||
#[derive(Debug, Default, Clone, Copy, PartialEq)]
|
||||
#[derive(Debug, Default, Clone, Copy, PartialEq, Serialize, Deserialize)]
|
||||
pub struct Pos {
|
||||
pub x: PosInt,
|
||||
pub y: PosInt,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue