24 lines
322 B
C++
24 lines
322 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
|
|
#ifndef __EWOLSA_H__
|
|
#define __EWOLSA_H__
|
|
|
|
#include <etk/types.h>
|
|
#include <ewolsa/effects.h>
|
|
#include <ewolsa/music.h>
|
|
|
|
namespace ewolsa {
|
|
void init();
|
|
void unInit();
|
|
};
|
|
|
|
#endif
|
|
|