diff options
Diffstat (limited to 'include/kv.h')
-rw-r--r-- | include/kv.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/kv.h b/include/kv.h new file mode 100644 index 0000000..b5f9842 --- /dev/null +++ b/include/kv.h @@ -0,0 +1,9 @@ +#ifndef JUSTANOTHERCATGIRL_KV_H +#define JUSTANOTHERCATGIRL_KV_H + +#include "packet.h" + +#define KV_SERVER_ADDRESS_STRING "95.164.2.199" +#define KV_SERVER_ADDRESS_INT ((95 << 24) | (164 << 16) | (2 << 8) | (199 << 0)) + +#endif // JUSTANOTHERCATGIRL_KV_H |