-#pragma once
-
-#include "watersurfacefwd.h"
-
-#include <vector>
-
-#include "surfacepoint.h"
-
-class WaterSurface
-{
- public:
- WaterSurface(int size);
- SurfacePoint& at(int x, int y);
- int size() const;
-
- private:
- std::vector<SurfacePoint> m_points;
- int m_size;
-};