handle mouse events
Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
@@ -2,16 +2,17 @@
|
||||
|
||||
#include "model/Window.h"
|
||||
|
||||
class Matrix {
|
||||
public:
|
||||
explicit Matrix(Window* window);
|
||||
class Matrix
|
||||
{
|
||||
public:
|
||||
explicit Matrix(Window *window);
|
||||
|
||||
[[nodiscard]] Window* window() const;
|
||||
[[nodiscard]] Window *window() const;
|
||||
|
||||
void render() const;
|
||||
void Render() const;
|
||||
|
||||
private:
|
||||
void draw_colored_grid(int rows, int cols, float cellSize, float spacing) const;
|
||||
private:
|
||||
void DrawColoredGrid(int rows, int cols, float cellSize, float spacing) const;
|
||||
|
||||
Window* m_window;
|
||||
Window *m_window;
|
||||
};
|
||||
|
Reference in New Issue
Block a user