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,17 @@
#include"Context.h"
#include"../global/Config.h"
#include<iostream>
Context::Context(HINSTANCE p_hInstance):
m_window(m_input),
m_renderer(m_gpu),
m_audioManager(m_audioEngine)
{
m_window.initWindow(p_hInstance,SCREEN_WIDTH,SCREEN_HEIGHT);
m_gpu.initGL(SCREEN_WIDTH, SCREEN_HEIGHT, m_window.getCanvas());
m_gpu.test += std::bind(&Window::Test, m_window, std::placeholders::_1);
}
Context::~Context()
{
}