momento/src/levelselection/init.c

15 lines
273 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright (C) 2021 KikooDX */
#include "levelselection.h"
struct LevelSelection
levelselection_init(void)
{
2021-04-30 02:16:11 +02:00
return (struct LevelSelection){
.pack_cursor = 0,
.visual_cursor = 0,
.visual_target = 0,
2021-04-30 02:16:11 +02:00
};
}