Remove all old code

This commit is contained in:
2024-01-03 10:21:07 -06:00
parent 7bc901355f
commit b4458d4280
12 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <PSX/Timer/high_res_timer.hpp>
#include <stdint.h>
namespace Overlay {
namespace TimerTest {
using TimeStamp = JabyEngine::HighResTime::TimeStamp;
void mesaure_busy_loop();
TimeStamp start_measuring();
void end_measuring(const TimeStamp& start, size_t data_samples);
}
}