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

23 lines
401 B
C++

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