/** * 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(); }