This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
glyphs-juke/src/iElement.h
2021-08-26 14:51:50 +09:00

33 lines
565 B
C++

#pragma once
#include "Frame.h"
#include "Period.h"
namespace gj {
class iElement {
public:
iElement() = delete;
iElement(iElement&&) = default;
iElement(const iElement&) = default;
iElement& operator=(iElement&&) = default;
iElement& operator=(const iElement&) = default;
virtual ~iElement() = default;
iElement(const Period& p) : period(p) {
}
virtual void Update(Frame& frame, double t) = 0;
virtual void Finalize() = 0;
/* Interfaces had better not have a variable but this is for optimization. */
const Period period;
};
}