mirror of
https://github.com/rtbrick/bngblaster.git
synced 2024-05-06 15:54:57 +00:00
24 lines
366 B
C
24 lines
366 B
C
/*
|
|
* BNG Blaster (BBL) - Interactive Mode
|
|
*
|
|
* Hannes Gredler, July 2020
|
|
* Christian Giese, October 2020
|
|
*
|
|
* Copyright (C) 2020-2024, RtBrick, Inc.
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __BBL_INTERACTIVE_H__
|
|
#define __BBL_INTERACTIVE_H__
|
|
|
|
void
|
|
bbl_interactive_log_buf_init();
|
|
|
|
void
|
|
bbl_interactive_init();
|
|
|
|
void
|
|
bbl_interactive_start();
|
|
|
|
#endif
|