1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add system power use tracking skeleton.

This commit is contained in:
Bartosz Taudul
2023-03-09 22:31:31 +01:00
parent f428a5b52b
commit 5e2e5eeefb
5 changed files with 59 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include "TracySysPower.hpp"
#ifdef TRACY_HAS_SYSPOWER
namespace tracy
{
SysPower::SysPower()
{
}
SysPower::~SysPower()
{
}
void SysPower::Tick()
{
}
}
#endif