VoxelEngine/src/delegates.h
2024-02-02 20:02:30 +03:00

11 lines
212 B
C++

#ifndef DELEGATES_H_
#define DELEGATES_H_
#include <functional>
#include <string>
typedef std::function<void()> runnable;
typedef std::function<void(const std::string&)> stringconsumer;
#endif // DELEGATES_H_