more public

This commit is contained in:
Max Bradbury 2020-06-24 13:05:32 +01:00
parent 2a19611f20
commit d8925c9eb9
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ use std::str::FromStr;
// same as a dialogue basically
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Ending {
pub(crate) id: String,
dialogue: String,
pub id: String,
pub dialogue: String,
}
impl Error for Ending {}