This repository has been archived on 2019-09-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
research-project/src/fmri/Animation.hpp

15 lines
164 B
C++

#pragma once
namespace fmri
{
class Animation
{
public:
virtual ~Animation() = default;
virtual void draw(float step) = 0;
};
}