Turned on warnings and fixed

This commit is contained in:
2022-02-06 16:14:57 +00:00
parent 76985519f1
commit 87df6921e8
50 changed files with 570 additions and 4246 deletions

View File

@@ -1,16 +1,17 @@
#ifndef LIGHT_H
#define LIGHT_H
/*
#include <stdint.h>
struct mLight {
struct mGameObject obj;
mfloat_t color[3];
struct mGameObject *go;
uint8_t color[3];
float strength;
int dynamic;
int on;
};
/*
struct mPointLight {
struct mLight light;
float constant;