2015-07-27 11:43:20 -03:00
|
|
|
#include <lo/lo.h>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace spiralcore {
|
|
|
|
|
|
|
|
|
|
class status {
|
|
|
|
|
public:
|
2016-02-26 13:11:46 -03:00
|
|
|
static void _update(const std::string &msg);
|
2015-07-27 11:43:20 -03:00
|
|
|
static void update(const char *msg, ...);
|
2016-02-26 13:11:46 -03:00
|
|
|
static void sound_item(const std::string &name, const std::string &colour);
|
|
|
|
|
static void sound_item_refresh();
|
2015-07-27 11:43:20 -03:00
|
|
|
static lo_address m_address;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|