15 lines
295 B
C
15 lines
295 B
C
|
/*
|
||
|
* Created by Brett on 04/01/23.
|
||
|
* Licensed under GNU General Public License V3.0
|
||
|
* See LICENSE file for license detail
|
||
|
*/
|
||
|
|
||
|
#ifndef BLT_SYSTEM_H
|
||
|
#define BLT_SYSTEM_H
|
||
|
|
||
|
namespace BLT::System {
|
||
|
// TODO: system memory and current CPU usage. (Linux Only currently)
|
||
|
}
|
||
|
|
||
|
#endif //BLT_SYSTEM_H
|