25 lines
399 B
C
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(); |