mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 06:54:20 -04:00
14 lines
252 B
C++
14 lines
252 B
C++
#ifndef EGG_PROCESS_METER_H
|
|
#define EGG_PROCESS_METER_H
|
|
|
|
#include "egg/core/eggPerf.h"
|
|
#include "egg/core/eggThread.h"
|
|
|
|
namespace EGG {
|
|
|
|
class ProcessMeter : public Thread, public PerformanceView {};
|
|
|
|
}; // namespace EGG
|
|
|
|
#endif // EGG_PROCESS_METER_H
|