12 lines
166 B
C++
12 lines
166 B
C++
#ifndef DEFINES_HPP_
|
|
#define DEFINES_HPP
|
|
|
|
#include <chrono>
|
|
|
|
#define GAME_CHANNEL 0
|
|
#define CHAT_CHANNEL 1
|
|
|
|
typedef std::chrono::high_resolution_clock Clock;
|
|
|
|
#endif
|