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/classicnote.cpp

9 lines
192 B
C++

#include "classicnote.h"
ClassicNote::ClassicNote(const std::vector<microsec>& intervals, microsec perfect_offset) :
Note(perfect_offset),
_evaluator(intervals, _perfect_offset)
{
}