make Game struct public

This commit is contained in:
Max Bradbury 2020-04-12 16:08:49 +01:00
parent 8e5d55c2a5
commit fd4a682ade
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "bitsy-parser"
version = "0.65.2"
version = "0.65.3"
authors = ["Max Bradbury <max@tinybird.info>"]
edition = "2018"
description = "A parser for Bitsy game data"

View File

@ -1,7 +1,7 @@
use crate::{Avatar, Dialogue, Ending, Item, Palette, Room, Sprite, Tile, Variable, mock};
#[derive(Debug, PartialEq)]
pub struct Game {
pub(crate) struct Game {
pub(crate) name: String,
pub(crate) version: f64,
pub(crate) room_format: u8,