Restructure project sources.

This commit is contained in:
2018-03-26 12:17:52 +02:00
parent a206f81eb2
commit 8015b84311
41 changed files with 2 additions and 37 deletions

14
src/fmri/Animation.hpp Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
namespace fmri
{
class Animation
{
public:
virtual ~Animation() = default;
virtual void draw(float step) = 0;
};
}