18 lines
321 B
C++
18 lines
321 B
C++
/*
|
|
* Created by Brett on 15/02/23.
|
|
* Licensed under GNU General Public License V3.0
|
|
* See LICENSE file for license detail
|
|
*/
|
|
|
|
#ifndef FINALPROJECT_DEBUG_H
|
|
#define FINALPROJECT_DEBUG_H
|
|
|
|
namespace fp::debug {
|
|
void enable();
|
|
void disable();
|
|
void toggle();
|
|
void render();
|
|
}
|
|
|
|
#endif //FINALPROJECT_DEBUG_H
|