14 lines
204 B
C++
14 lines
204 B
C++
/*
|
|
* File: OutputHelper.h
|
|
* Description: Provides functions to help with console output.
|
|
* Author: Trenser
|
|
* Created: 01-04-2026
|
|
*/
|
|
#pragma once
|
|
#include <iostream>
|
|
|
|
namespace util
|
|
{
|
|
void clear();
|
|
}
|