This commit is contained in:
2026-02-17 13:17:23 +01:00
parent ea9acc1e3d
commit f6b4cf11b0
2 changed files with 5 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
#include "world.h"
enum quadrant_type {
empty,
asteroid_field,
@@ -10,4 +12,4 @@ enum quadrant_type {
supernova,
anomaly,
singularity
}
};

View File

@@ -3,8 +3,8 @@
#include <stdint.h>
#define WORLD_WIDTH = 256
#define WORLD_HEIGHT = 256
#define WORLD_WIDTH = 256;
#define WORLD_HEIGHT = 256;
typedef enum {
Q_EMPTY,