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.

21 lines
402 B
C++

#include "classicnotenonestate.h"
#include "../classicnote.h"
#include "../classicsprite.h"
auto ClassicNoteNoneState::value() const -> Value
{
return Value::NONE;
}
auto ClassicNoteNoneState::update(const ClassicNote* note, const microsec& offset) -> Value
{
(void) offset;
(void) note;
}
void ClassicNoteNoneState::onEntering(const ClassicNote* note)
{
note->sprite()->reset();
}