Skip to content

Commit 8d934db

Browse files
Totto16mgerhold
authored andcommitted
fix rebase issues
1 parent db206af commit 8d934db

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/recording.hpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ struct Recording {
2525
u8 tetrion_index;
2626
u64 simulation_step_index;
2727
InputEvent event;
28-
Record(usize simulation_step_index, InputEvent event)
29-
: simulation_step_index{ simulation_step_index },
30-
event{ event } { }
3128
};
3229

3330
std::vector<TetrionHeader> m_tetrion_headers;
@@ -84,14 +81,6 @@ struct RecordingReader : public Recording {
8481
}
8582
}
8683

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-
9584
[[nodiscard]] const Record& at(const usize index) const {
9685
return m_records.at(index);
9786
}

0 commit comments

Comments
 (0)