From fd4a682ade86a739de35ef332aa06fcad46e54a8 Mon Sep 17 00:00:00 2001 From: Max Bradbury Date: Sun, 12 Apr 2020 16:08:49 +0100 Subject: [PATCH] make Game struct public --- Cargo.toml | 2 +- src/game.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d34ba93..caaa387 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitsy-parser" -version = "0.65.2" +version = "0.65.3" authors = ["Max Bradbury "] edition = "2018" description = "A parser for Bitsy game data" diff --git a/src/game.rs b/src/game.rs index b02e5c4..7386b75 100644 --- a/src/game.rs +++ b/src/game.rs @@ -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,