Add Music fluctuations project and Chinese plan docs

This commit is contained in:
2026-03-21 15:55:54 +08:00
parent 629455df07
commit a172d75e36
462 changed files with 382904 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <chrono>
#include <iostream>
#include"../global/Base.h"
#include"../global/Config.h"
class Clock
{
public:
Clock();
~Clock();
double Update();
private:
long long m_lastTime = 0;
};