summaryrefslogtreecommitdiffhomepage
path: root/ExampleSource.h
blob: cce3d3f1a7900946d2c6e40b962c30c7e8cb088c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <vector>

#include "Grid.h"
#include "Source.h"


class ExampleSource : public Source
{
public:
    ExampleSource();
    std::vector<Grid> grids() const override;
private:
    mutable float m_time;
};