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

14
l2detect/UserAI_Buffs.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "stdafx.h"
#include "UserAI.h"
void UserAI::UAI_Parse_AbnormalStatusUpdate( class UserAI *cls, void *l2_game_packet )
{
L2GamePacket *p = (L2GamePacket *)l2_game_packet;
cls->buffs.parse_AbnormalStatusUpdate( p );
}
void UserAI::UAI_Parse_ShortBuffStatusUpdate( class UserAI *cls, void *l2_game_packet )
{
L2GamePacket *p = (L2GamePacket *)l2_game_packet;
cls->buffs.parse_ShortBuffStatusUpdate( p );
}