make ID public so we can process ending IDs

This commit is contained in:
Max Bradbury 2020-06-24 13:04:53 +01:00
parent 6ab2e81468
commit 2a19611f20
1 changed files with 1 additions and 1 deletions

View File

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