Skip to content
Snippets Groups Projects
Commit 78e8a369 authored by Noé's avatar Noé
Browse files

Global settings

parent 9832a778
No related branches found
No related tags found
No related merge requests found
#include "settings.hpp"
int _num_trees = 200;
int _num_grass = 200;
float _terrain_length = 250;
int num_trees() { return _num_trees; }
int num_grass() { return _num_grass; }
float terrain_length() { return _terrain_length; }
\ No newline at end of file
#pragma once
#include "cgp/cgp.hpp"
using namespace cgp;
int num_trees();
int num_grass();
float terrain_length();
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment