Implements element handling.

This commit is contained in:
2021-08-25 18:17:31 +09:00
parent 213902021c
commit e74a599ac1
20 changed files with 2081 additions and 76 deletions

View File

@@ -9,16 +9,19 @@ namespace gj {
class iElement {
public:
iElement() = delete;
iElement(iElement&&) = default;
iElement(const iElement&) = default;
iElement& operator=(iElement&&) = default;
iElement& operator=(const iElement&) = default;
iElement() = default;
virtual ~iElement() = default;
virtual void Update(Frame& f) = 0;
iElement(const Period& p) : period(p) {
}
virtual void Update(Frame& frame, double t) = 0;
/* Interfaces had better not have a variable but this is for optimization. */
const Period period;