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/classicgame/classicnotestate/classicnotedyingstate.h

15 lines
387 B
C++

#ifndef CLASSICNOTEDYINGSTATE_H
#define CLASSICNOTEDYINGSTATE_H
#include "classicnotestate.h"
class ClassicNoteDyingState : public ClassicNoteState
{
public:
virtual Value value() const override;
virtual Value update(const ClassicNote* note, const microsec& offset) override;
virtual void onEntering(const ClassicNote* note) override;
};
#endif // CLASSICNOTEDYINGSTATE_H