Create gamelog.ron

This commit is contained in:
Cutieguwu
2025-03-25 13:23:36 -04:00
parent 02daa8ad22
commit 7ac434a840

24
gamelog.ron Normal file
View File

@@ -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)
),
]
)
]
)
]