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,13 @@
#include"AudioClip.h"
AudioClip::AudioClip(std::string p_fileName)
{
m_fileName = p_fileName;
}
AudioClip::~AudioClip(){}
std::string AudioClip::GetName()
{
return m_fileName;
}