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