Initial MSVC 2008 projects workspace

This commit is contained in:
alexey.min
2012-02-01 05:25:08 +00:00
commit 03de3bdc95
1446 changed files with 476853 additions and 0 deletions

20
l2packets/L2_versions.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef H_L2_VERSIONS
#define H_L2_VERSIONS
typedef enum eL2_VERSION
{
/** constant to set protocol version as Kamael */
L2_VERSION_T1 = 0,
/** constant to set protocol version as Hellbound */
L2_VERSION_T15 = 1,
/** constant to set protocol version as Gracia Part 1 */
L2_VERSION_T2 = 2,
/** constant to set protocol version as Gracia Part 2 */
L2_VERSION_T22 = 3,
/** constant to set protocol version as Gracia Final */
L2_VERSION_T23 = 4,
/** constant to set protocol version as Gracia Epilogue */
L2_VERSION_T24 = 5
} L2_VERSION;
#endif