added C test

This commit is contained in:
2024-06-30 19:09:48 +02:00
committed by T.v.Dein
parent eb95c72538
commit 957db29a37
7 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#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