Minesweeper prog
This commit is contained in:
25
src/game/minesweeper/display/sweepboard.h
Normal file
25
src/game/minesweeper/display/sweepboard.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* 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();
|
Reference in New Issue
Block a user