Dawn/src/world/world.c

23 lines
343 B
C

/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "world.h"
void worldInit() {
mapInit();
entityStateInit();
}
void worldRender() {
mapRender();
entityStateRender();
}
void worldDispose() {
entityStateDispose();
mapDispose();
}