Rename nDeaths -> deaths and nRestarts -> restarts

This commit is contained in:
wcko87 2017-05-12 19:53:19 +08:00
parent 382bf61271
commit a830aae9ae

View File

@ -95,13 +95,13 @@ namespace rabi_splitter_WPF
), ),
ExportVariable<int> ( ExportVariable<int> (
handle: "nDeaths", handle: "deaths",
displayName: "Deaths", displayName: "Deaths",
tracker: () => inGameState.nDeaths tracker: () => inGameState.nDeaths
), ),
ExportVariable<int> ( ExportVariable<int> (
handle: "nRestarts", handle: "restarts",
displayName: "Restarts", displayName: "Restarts",
tracker: () => inGameState.nRestarts tracker: () => inGameState.nRestarts
), ),