mpri-graphics-project/FlatGround.hpp

7 lines
120 B
C++

#pragma once
#include "Ground.hpp"
class FlatGround : public Ground {
double operator() (double, double) const;
};