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