Files
dusk/src/game/minesweeper/display/sweepboard.h
2025-10-06 09:35:05 -05:00

25 lines
399 B
C

/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "dusk.h"
typedef struct {
int32_t nothing;
} sweepboard_t;
extern sweepboard_t SWEEPBOARD;
/**
* Initializes the sweep board.
*/
void sweepBoardInit();
/**
* Disposes of the sweep board resources.
*/
void sweepBoardDispose();