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/include/timeline.h

20 lines
318 B
C++

#ifndef TIMELINE_H
#define TIMELINE_H
#include <SFML/Config.hpp>
#include <memory>
using microsec = sf::Int64;
class Timeline
{
public:
virtual ~Timeline() = default;
virtual void update(const microsec& music_offset) = 0;
virtual void init() = 0;
virtual void clear() = 0;
};
#endif // TIMELINE_H