2048-cli/src/ai.c

12 lines
210 B
C
Raw Normal View History

#include "ai.h"
#include "engine.h"
#include "gfx.h"
const char moves[] = {'w', 'a', 's', 'd'};
int ai_move(struct gamestate *g)
{
if (g->opts->interactive) gfx_sleep(50);
return moves[rand() % 4];
}