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

18 lines
327 B
C++
Raw Normal View History

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