Trying to optimize memory.

This commit is contained in:
2021-10-16 15:52:16 -07:00
parent b110bab954
commit e21ba4858f
20 changed files with 132 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();