mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
17 lines
222 B
C++
17 lines
222 B
C++
|
|
// STL includes
|
|
#include <iostream>
|
|
|
|
// Boblight includes
|
|
#include <boblight.h>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "TestBoblightOrig started" << std::endl;
|
|
|
|
std::cout << "TestBoblightOrig finished" << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|