feat: directory-based resource resolver
This commit is contained in:
parent
15e2abbada
commit
656549f039
12 changed files with 223 additions and 11 deletions
23
engine/include/fishbone/logger.h
Normal file
23
engine/include/fishbone/logger.h
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#ifndef __FISHBONE_LOGGER_H__
|
||||
#define __FISHBONE_LOGGER_H__
|
||||
|
||||
#include <fishbone/pre.h>
|
||||
|
||||
namespace fishbone {
|
||||
class Logger {
|
||||
public:
|
||||
enum class Cause {
|
||||
INFO,
|
||||
DEBUG,
|
||||
WARNING,
|
||||
ERROR,
|
||||
CRITICAL,
|
||||
};
|
||||
|
||||
void log(std::string message);
|
||||
void log(Cause cause, std::string message);
|
||||
};
|
||||
|
||||
} // namespace fishbone
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue