From 7ac434a840aaf45982813ed7d8a467a6c85a94eb Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Tue, 25 Mar 2025 13:23:36 -0400 Subject: [PATCH] Create gamelog.ron --- gamelog.ron | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 gamelog.ron diff --git a/gamelog.ron b/gamelog.ron new file mode 100644 index 0000000..9947a0a --- /dev/null +++ b/gamelog.ron @@ -0,0 +1,24 @@ +#![enable(implicit_some)] +#![enable(unwrap_newtypes)] +#![enable(unwrap_variant_newtypes)] + +[ + GameRecord( + version: "0.1.0", + periods: [ + Period( + start: First, + end: Fourth, + plays: [ + Play( + action: None, + down: Kickoff( + offence: Nebraska + ), + terrain: Distance(10) + ), + ] + ) + ] + ) +]