mirror of
https://codeberg.org/scip/golsky.git
synced 2025-12-16 20:20:57 +01:00
19 lines
278 B
C
19 lines
278 B
C
#ifndef _HAVE_GRID_H
|
|
#define _HAVE_GRID_H
|
|
|
|
#include "raylib.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct Grid {
|
|
int Width;
|
|
int Height;
|
|
int Density;
|
|
int **Data;
|
|
} Grid;
|
|
|
|
Grid *NewGrid(int width, int height, int density);
|
|
void FillRandom(Grid *grid);
|
|
|
|
#endif
|