grid: add a guide grid
This commit is contained in:
28
includes/grid.hpp
Normal file
28
includes/grid.hpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* File name: grid.hpp
|
||||
* Author: lejulien
|
||||
* Date created: 01-01-1970 00:59:59
|
||||
// Date modified: 12-01-2026 21:30:10
|
||||
* ------
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <context.hpp>
|
||||
#include <memory>
|
||||
#include <settings_menu.hpp>
|
||||
#include <world.hpp>
|
||||
|
||||
namespace gol {
|
||||
|
||||
class Grid {
|
||||
public:
|
||||
Grid(std::shared_ptr<ctx>);
|
||||
~Grid() = default;
|
||||
void display();
|
||||
|
||||
private:
|
||||
std::shared_ptr<ctx> context_;
|
||||
};
|
||||
|
||||
}; // namespace gol
|
||||
Reference in New Issue
Block a user