Factored Narya into two Maven modules: core and tools.

This will allow us to properly ship narya-tools.jar to Maven Central which is
necessary for Nenya and Vilya (and any other Narya-using project) to themselves
be built.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6776 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2012-02-03 21:25:13 +00:00
parent d73949838d
commit a7e0893191
781 changed files with 173 additions and 109 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
namespace presents
{ enum DisconnectReason {
NETWORK_DISCONNECT,
SERVER_DISCONNECT,
CLIENT_CLOSED,
SERVER_UNREACHABLE,
UNKNOWN
};
typedef boost::signal<void (DisconnectReason)> DisconnectEvent;
}