You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
project-kyoku/src/modes/classicmode/classicnote.cpp

17 lines
319 B
C++

#include "classicmode/classicnote.h"
ClassicNote::ClassicNote(const kku::microsec& perfect_offset) :
Note(perfect_offset),
_state(State::NONE)
{}
void ClassicNote::setState(ClassicNote::State state) noexcept
{
_state = state;
}
auto ClassicNote::getState() const noexcept -> State
{
return _state;
}