mpri-graphics-project/FlatGround.hpp

7 lines
120 B
C++
Raw Normal View History

2018-02-13 17:03:11 +01:00
#pragma once
#include "Ground.hpp"
class FlatGround : public Ground {
double operator() (double, double) const;
};