project-kyoku/src/modes/classicmode/game/classicnote.cpp

18 lines
327 B
C++
Raw Normal View History

#include "classicnote.h"
2021-09-27 23:48:06 -04:00
ClassicNote::ClassicNote(NoteInitializer &&init) :
Note(init.perfect_offset),
2021-09-27 23:48:06 -04:00
_state(State::NONE),
_context(init.context)
{}
2022-02-05 20:33:09 -05:00
void ClassicNote::setState(ClassicNote::State state) noexcept
{
2022-02-05 20:33:09 -05:00
_state = state;
}
2022-02-05 20:33:09 -05:00
auto ClassicNote::getState() const noexcept -> State
{
2022-02-05 20:33:09 -05:00
return _state;
}