mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-03-29 18:54:07 +00:00
14 lines
240 B
C++
14 lines
240 B
C++
#include <projectM-4/Logging.hpp>
|
|
#include <projectM-4/ProjectM.hpp>
|
|
|
|
int main()
|
|
{
|
|
auto logLevel = libprojectM::Logging::GetLogLevel();
|
|
|
|
libprojectM::ProjectM pm;
|
|
|
|
auto frameData = pm.PCM().GetFrameAudioData();
|
|
|
|
return 0;
|
|
}
|