18 lines
304 B
C
18 lines
304 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "world.h"
|
|
|
|
world_t * worldCreate() {
|
|
world_t *world = malloc(sizeof(world_t));
|
|
|
|
return world;
|
|
}
|
|
|
|
void worldDispose(world_t *world) {
|
|
free(world);
|
|
} |