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.

18 lines
274 B
C++

#pragma once
#include <vector>
#include <SFML/System/Clock.hpp>
using microsec = sf::Int64;
class Note
{
public:
explicit Note(microsec perfect_offset) :
_perfect_offset(perfect_offset) {}
virtual ~Note() = 0;
protected:
microsec _perfect_offset;
};