Trying to optimize memory.

This commit is contained in:
2021-10-16 15:52:16 -07:00
parent af514847d8
commit 97a8d936b5
15 changed files with 127 additions and 117 deletions

12
src/file/gui.c Normal file
View File

@ -0,0 +1,12 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "gui.h"
void guiLoad() {
}

14
src/file/gui.h Normal file
View File

@ -0,0 +1,14 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../libs.h"
#include "asset.h"
#include "csv.h"
#include "xml.h"
void guiLoad();