/*
  game.c - The hexbombs manager
*/

#include <stdlib.h>
#include "hb.h"

struct game *game_create()
{
    return NULL;
}

void game_destroy(struct game *game)
{
    free(game);
}
