1
0
Fork 0
mirror of https://git.sr.ht/~kikoodx/momento synced 2024-06-04 17:51:26 +02:00
momento/src/titlescreen/update.c

17 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;
}