momento/src/titlescreen/update.c

18 lines
346 B
C
Raw Normal View History

2021-04-12 10:59:46 +02:00
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright (C) 2021 KikooDX */
#include "input.h"
2021-04-12 10:59:46 +02:00
#include "titlescreen.h"
#include <gint/keyboard.h>
/* Return 1 if game state should change. */
int
titlescreen_update(struct TitleScreen *titlescreen, struct Input input)
2021-04-12 10:59:46 +02:00
{
if (input.keystates[K_A] == KS_PRESS) {
2021-04-12 10:59:46 +02:00
return 1;
}
return 0;
}