We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db206af commit 8d934dbCopy full SHA for 8d934db
src/recording.hpp
@@ -25,9 +25,6 @@ struct Recording {
25
u8 tetrion_index;
26
u64 simulation_step_index;
27
InputEvent event;
28
- Record(usize simulation_step_index, InputEvent event)
29
- : simulation_step_index{ simulation_step_index },
30
- event{ event } { }
31
};
32
33
std::vector<TetrionHeader> m_tetrion_headers;
@@ -84,14 +81,6 @@ struct RecordingReader : public Recording {
84
81
}
85
82
86
83
87
- [[nodiscard]] Random::Seed seed() const {
88
- return m_seed;
89
- }
90
-
91
- void add_record(const usize simulation_step_index, const InputEvent event) {
92
- m_records.emplace_back(simulation_step_index, event);
93
94
95
[[nodiscard]] const Record& at(const usize index) const {
96
return m_records.at(index);
97
0 commit comments