Finish LogFile format and patch template/logfile.ron

This commit is contained in:
Cutieguwu
2025-03-25 12:14:24 -04:00
parent aec577e93b
commit f791675d3a
5 changed files with 45 additions and 20 deletions

View File

@@ -1,18 +1,24 @@
#![enable(implicit_some)]
#![enable(unwrap_newtypes)]
#![enable(unwrap_variant_newtypes)]
[
GameRecord ([
Some(Period(
start: First,
end: Some(Fourth),
plays: [
Play(
action: None,
down: Kickoff,
terrain: 0
),
]
)),
None,
None,
None,
])
GameRecord(
version: "0.0.1",
periods: [
Period(
start: First,
end: Fourth,
plays: [
Play(
action: None,
down: Kickoff(
offence: Nebraska
),
terrain: 0
),
]
)
]
)
]