1 Star 0 Fork 0

yoyojacky/CSMoE

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server.vcxproj.filters 61.64 KB
一键复制 编辑 原始数据 按行查看 历史
JustaNOOBQAQ 提交于 2020-07-17 10:23 +08:00 . weapon_molotov
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="engine">
<UniqueIdentifier>{eeaac718-712b-453f-9d34-4cefc9e0fe59}</UniqueIdentifier>
</Filter>
<Filter Include="common">
<UniqueIdentifier>{fe7a8e81-b7d4-4540-ab5b-457ed93672ce}</UniqueIdentifier>
</Filter>
<Filter Include="public">
<UniqueIdentifier>{d74cb79e-afd5-4215-af0e-029e38925be0}</UniqueIdentifier>
</Filter>
<Filter Include="dlls">
<UniqueIdentifier>{73fb61d4-c4ca-4159-8967-0e98666e1d4d}</UniqueIdentifier>
</Filter>
<Filter Include="game_shared">
<UniqueIdentifier>{1d2d9bb7-4ba0-4fe6-a0d9-6fae9f96ec3c}</UniqueIdentifier>
</Filter>
<Filter Include="game_shared\bot">
<UniqueIdentifier>{23c0aa0d-b62d-48e6-8677-01d24ee9d10d}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\wpn_shared">
<UniqueIdentifier>{7ae9fb2c-9461-4055-a739-10ae77aa5194}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\bot">
<UniqueIdentifier>{f421c19f-cac0-41c3-bde8-728182676437}</UniqueIdentifier>
</Filter>
<Filter Include="pm_shared">
<UniqueIdentifier>{b9e4d175-16d0-4f51-8520-896826a345dc}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\common">
<UniqueIdentifier>{5b3411a4-0455-4c6f-ba83-e0faf0bdfb84}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\hostage">
<UniqueIdentifier>{6983a983-71e2-4c14-a013-d4dc5e34d60c}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\bot\states">
<UniqueIdentifier>{638174c7-80d2-415c-a335-54a8149d6add}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\hostage\states">
<UniqueIdentifier>{d1cb44c6-0982-4410-a099-0b3666ace636}</UniqueIdentifier>
</Filter>
<Filter Include="public\tier1">
<UniqueIdentifier>{bae4f794-6891-495d-9cff-05a5792ef802}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\gamemode">
<UniqueIdentifier>{05781758-34ad-449d-9004-158d86af0488}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\player">
<UniqueIdentifier>{7527e99f-2172-40a6-8acb-1d1efbc75db9}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\gamemode\zbs">
<UniqueIdentifier>{72f0b1e9-cfa5-40ae-8419-70f0922f6c00}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\gamemode\zb2">
<UniqueIdentifier>{b71978a8-5a8e-4cfb-9ca0-e027dc3ddd97}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\weapons">
<UniqueIdentifier>{52b37e27-762c-4242-bfc6-9a8e6d49e634}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\cbase">
<UniqueIdentifier>{bf5ee8c4-f943-4ef7-a4dd-24b6ef23af3c}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\gamemode\zb3">
<UniqueIdentifier>{4ef8c464-25b1-442b-9df5-829f8de2d72c}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\gamemode\zbb">
<UniqueIdentifier>{dcab357c-5b1f-4c65-82eb-1a5562d7d7e5}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\gamemode\zb1">
<UniqueIdentifier>{81c74af9-4330-4121-a5fa-36fee5a453ef}</UniqueIdentifier>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
<Filter Include="public\const">
<UniqueIdentifier>{98fd8c90-5625-473c-90c0-d723f7879ef6}</UniqueIdentifier>
</Filter>
<Filter Include="dlls\util">
<UniqueIdentifier>{89ff163d-57f3-4352-894b-39719b236c0d}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\dlls\h_export.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\triggers.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\subs.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\combat.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\cbase.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\animating.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\shared_util.cpp">
<Filter>game_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\util.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\world.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\sound.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\weapons.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_ak47.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_aug.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_awp.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_c4.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_deagle.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_elite.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_famas.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_fiveseven.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_flashbang.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_g3sg1.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_galil.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_glock18.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_hegrenade.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_knife.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m3.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m4a1.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m249.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mac10.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mp5navy.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_p90.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_p228.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_scout.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_sg550.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_sg552.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_smokegrenade.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_tmp.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_ump45.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_usp.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_xm1014.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\debug.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\animation.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\skill.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamerules.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\game.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\training_gamerules.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\multiplay_gamerules.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\voice_gamemgr.cpp">
<Filter>game_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\mpstubb.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_manager.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\bot_manager.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_init.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_chatter.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\bot_util.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\client.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\h_cycler.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\h_battery.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\bot_profile.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\nav_area.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\tutor_base_tutor.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\tutor_cs_tutor.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\tutor_base_states.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\globals.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\h_ai.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\airtank.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\ggrenade.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\career_tasks.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_attack.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_buy.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_defuse_bomb.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_escape_from_bomb.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_fetch_bomb.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_follow.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_hide.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_hunt.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_idle.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_investigate_noise.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_move_to.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_plant_bomb.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\states\cs_bot_use_entity.cpp">
<Filter>dlls\bot\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_event.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_learn.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_listen.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_nav.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_pathfind.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_radio.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_statemachine.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_weapon.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\hostage.cpp">
<Filter>dlls\hostage</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\hostage_improv.cpp">
<Filter>dlls\hostage</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\hostage_localnav.cpp">
<Filter>dlls\hostage</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\states\hostage_animate.cpp">
<Filter>dlls\hostage\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\states\hostage_escape.cpp">
<Filter>dlls\hostage\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\states\hostage_follow.cpp">
<Filter>dlls\hostage\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\states\hostage_idle.cpp">
<Filter>dlls\hostage\states</Filter>
</ClCompile>
<ClCompile Include="..\dlls\hostage\states\hostage_retreat.cpp">
<Filter>dlls\hostage\states</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\nav_node.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\nav_path.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\bot.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\game_shared\bot\nav_file.cpp">
<Filter>game_shared\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_update.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_vision.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\tutor_cs_states.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\tutor.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_gamestate.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\singleplay_gamerules.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\ammo.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\spectator.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\observer.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\effects.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\plats.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\buttons.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\maprules.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\plane.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\soundent.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\pathcorner.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\vehicle.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\func_tank.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\func_break.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\doors.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bmodels.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\items.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\explode.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\mortar.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\healthkit.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\lights.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\public\MemPool.cpp">
<Filter>public</Filter>
</ClCompile>
<ClCompile Include="..\public\unicode_strtools.cpp">
<Filter>public</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_none.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_base.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_tdm.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mods.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_dm.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_spawnpoint.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\csdm_randomspawn.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\hintmessage.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_msg.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_zb1.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_zombie.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_model.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_spawnprotection.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\weapons_buy.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_knockback.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_zbs.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zbs\zs_subs.cpp">
<Filter>dlls\gamemode\zbs</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zbs\monster_entity.cpp">
<Filter>dlls\gamemode\zbs</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_human_level.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_ak47l.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_mod_strategy.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_deagled.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\weapons_data.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\weapons_msg.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mp7a1d.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_zb2.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\supplybox.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\bot\cs_bot_bhopjump.cpp">
<Filter>dlls\bot</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_wa2000.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_as50.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m95.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zbs\monster_manager.cpp">
<Filter>dlls\gamemode\zbs</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_thompson.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_kriss.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_xm8c.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_xm8s.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m1887.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_tar21.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_scarl.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_scarh.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_cannon.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\player\player_account.cpp">
<Filter>dlls\player</Filter>
</ClCompile>
<ClCompile Include="..\dlls\cbase\cbase_memory.cpp">
<Filter>dlls\cbase</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_k1a.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\knife_skullaxe.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_infinity.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_gungnir.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_zb3.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_svdex.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_gd.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\knife_zombi.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mp7a1c.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mp7a1p.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mg3.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_infinitys.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\zb2_skill_human.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\zb2_skill_zombie.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\zb2_zclass_tank.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\zb2_zclass.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\zb2_zclass_speed.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m14ebr.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_infinityex2.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_infinityex1.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\weapons_precache.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\mod_zbb.cpp">
<Filter>dlls\gamemode</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zbb\zbb_ghost.cpp">
<Filter>dlls\gamemode\zbb</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zbb\zbb_basebuilder.cpp">
<Filter>dlls\gamemode\zbb</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb1\zb1_countdown.cpp">
<Filter>dlls\gamemode\zb1</Filter>
</ClCompile>
<ClCompile Include="..\pm_shared\pm_shared.cpp">
<Filter>pm_shared</Filter>
</ClCompile>
<ClCompile Include="..\pm_shared\pm_debug.cpp">
<Filter>pm_shared</Filter>
</ClCompile>
<ClCompile Include="..\pm_shared\pm_math.cpp">
<Filter>pm_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\cbase\cbase_physint.cpp">
<Filter>dlls\cbase</Filter>
</ClCompile>
<ClCompile Include="..\dlls\cbase\cbase_entity_factory.cpp">
<Filter>dlls\cbase</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zbb\zbb_zombie.cpp">
<Filter>dlls\gamemode\zbb</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\knife_dualsword.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_anaconda.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_balrog7.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_gatling.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mg36.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_Frequency9.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_lc_sword.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_nataknifedx.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_oppovivo.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_strongknifex.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\knife_dragonsword.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m2.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_cannonplasma.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_cannontiger.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_facelessvoid.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_infinityx.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_m134heroi.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_stormgiantx.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_deagleb.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_xm2010pc.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_awpnvidia.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_dmp7a1x.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_m4a1razer.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_m4a1x.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_m4a1mw.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\z4b_ak47x.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_starchaserar.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m134.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m134ex.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m95xmas.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m134xmas.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_mg3xmas.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_janus7xmas.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\stdafx.cpp" />
<ClCompile Include="..\dlls\wpn_shared\wpn_sgdrill.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_chainsaw.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_tbarrel.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\knife_katana.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_bow.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_desperado.cpp">
<Filter>dlls</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_ak47dragon.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_knifedragon.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_m4a1dragon.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_gunkata.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\gamemode\zb2\zb2_zclass_deimos2.cpp">
<Filter>dlls\gamemode\zb2</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_zombiebomb.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\wpn_molotov.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\csgo_mag7.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\csgo_negev.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\csgo_bizon.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\csgo_cz75.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\csgo_sawedoff.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
<ClCompile Include="..\dlls\wpn_shared\csgo_tec9.cpp">
<Filter>dlls\wpn_shared</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\public\basetypes.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\public\protected_things.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\dlls\activity.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\animation.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\basemonster.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\client.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\doors.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\effects.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\explode.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\extdll.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\func_break.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamerules.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\items.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\maprules.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\monsters.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\saverestore.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\skill.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\soundent.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\spectator.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\trains.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\util.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\vector.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\bot_util.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\triggers.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\subs.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\perf_counter.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\public\MemPool.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\GameEvent.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\training_gamerules.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\voice_gamemgr.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bot\cs_bot_manager.h">
<Filter>dlls\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\nav_area.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\steam_util.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\bot_profile.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\bot_manager.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bot\cs_bot.h">
<Filter>dlls\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bot\cs_bot_chatter.h">
<Filter>dlls\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bot\cs_gamestate.h">
<Filter>dlls\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\h_export.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\nodes.h">
<Filter>dlls\common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\enginecallback.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\decals.h">
<Filter>dlls\common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cdll_dll.h">
<Filter>dlls\common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\monsterevent.h">
<Filter>dlls\common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\talkmonster.h">
<Filter>dlls\common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\debug.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\shared_util.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\h_cycler.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\h_battery.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\simple_checksum.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\tutor_base_tutor.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\tutor_cs_tutor.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\tutor_base_states.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\airtank.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\career_tasks.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\hostage\hostage.h">
<Filter>dlls\hostage</Filter>
</ClInclude>
<ClInclude Include="..\dlls\hostage\hostage_improv.h">
<Filter>dlls\hostage</Filter>
</ClInclude>
<ClInclude Include="..\dlls\hostage\hostage_localnav.h">
<Filter>dlls\hostage</Filter>
</ClInclude>
<ClInclude Include="..\dlls\hostage\hostage_states.h">
<Filter>dlls\hostage</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\improv.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\nav.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\nav_node.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\nav_path.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\simple_state_machine.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\nav_file.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\tutor_cs_states.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\tutor.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\globals.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\bot.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\ammo.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\observer.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\plats.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\plane.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bitvec.h">
<Filter>game_shared</Filter>
</ClInclude>
<ClInclude Include="..\common\com_model.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\const.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\cvardef.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\entity_state.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\netadr.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\pmtrace.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\r_studioint.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\studio_event.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\usercmd.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\weaponinfo.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\crc.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\event_flags.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\in_buttons.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\mathlib.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\screenfade.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\winsani_in.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\common\winsani_out.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\pathcorner.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\vehicle.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\func_tank.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bmodels.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\mortar.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\healthkit.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\lights.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\sound.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\h_ai.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\game.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\world.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\common\hltv.h">
<Filter>dlls\common</Filter>
</ClInclude>
<ClInclude Include="..\dlls\schedule.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\scriptevent.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\game_shared\bot\bot_constants.h">
<Filter>game_shared\bot</Filter>
</ClInclude>
<ClInclude Include="..\public\utlmemory.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\public\utlvector.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\public\utllinkedlist.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\public\tier1\utlmemory.h">
<Filter>public\tier1</Filter>
</ClInclude>
<ClInclude Include="..\public\tier1\utlvector.h">
<Filter>public\tier1</Filter>
</ClInclude>
<ClInclude Include="..\engine\studio.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\engine\shake.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\engine\customentity.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\engine\custom.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\common\bspfile.h">
<Filter>common</Filter>
</ClInclude>
<ClInclude Include="..\engine\edict.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\engine\eiface.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\engine\Sequence.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\engine\progdefs.h">
<Filter>engine</Filter>
</ClInclude>
<ClInclude Include="..\dlls\common.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\maintypes.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\info.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\public\unicode_strtools.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_ak47.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_aug.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_awp.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_c4.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_deagle.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_flashbang.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_g3sg1.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_glock18.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_hegrenade.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_knife.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m3.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m4a1.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m249.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_mac10.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_mp5navy.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_p90.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_p228.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_scout.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_smokegrenade.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_tmp.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_ump45.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_usp.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_xm1014.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_elite.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_fiveseven.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_sg550.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_galil.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_famas.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_sg552.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\public\minmax.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\public\arraysize.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_none.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_base.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_tdm.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mods.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mods_const.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_dm.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\csdm_randomspawn.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_spawnpoint.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_const.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\hintmessage.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_msg.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_zb1.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_zombie.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_model.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bot_include.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\public\json.hpp">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons_const.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons_buy.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_knockback.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_zbs.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbs\zs_subs.h">
<Filter>dlls\gamemode\zbs</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbs\monster_entity.h">
<Filter>dlls\gamemode\zbs</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_human_level.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbs\zbs_const.h">
<Filter>dlls\gamemode\zbs</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_mod_strategy.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_deagled.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons_data.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons_msg.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_mp7a1d.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_zb2.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb2\supplybox.h">
<Filter>dlls\gamemode\zb2</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb2\zb2_const.h">
<Filter>dlls\gamemode\zb2</Filter>
</ClInclude>
<ClInclude Include="..\dlls\bot\cs_bot_statemachine.h">
<Filter>dlls\bot</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_wa2000.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_as50.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m95.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbs\monster_manager.h">
<Filter>dlls\gamemode\zbs</Filter>
</ClInclude>
<ClInclude Include="..\public\ruleof350.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_thompson.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_kriss.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m1887.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_tar21.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_xm8s.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_scarh.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_scarl.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\ReloadDefault.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\WeaponTemplate.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\SecondaryAttackZoom.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_cannon.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\SecondaryAttackSniperZoom1.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\SecondaryAttackSniperZoom2.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\WeaponIdleDefault.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\DeployDefault.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\player\player_account.h">
<Filter>dlls\player</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase\cbase_memory.h">
<Filter>dlls\cbase</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_k1a.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_infinity.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\ExpressionBuilder.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\FireRifle.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\GeneralData.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\GetDamageDefault.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\ItemInfo.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\PrecacheEvent.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\PrimaryAttackRifle.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\RecoilKickBack.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\RecoilPunch.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_zb3.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb3\zb3_morale.h">
<Filter>dlls\gamemode\zb3</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb3\zb3_const.h">
<Filter>dlls\gamemode\zb3</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_svdex.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_gd.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\DoubleModeType.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_mg3.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\FirePistol.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\WeaponDataVaribles.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb2\zb2_zclass.h">
<Filter>dlls\gamemode\zb2</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb2\zb2_skill.h">
<Filter>dlls\gamemode\zb2</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons_moe_buy.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m14ebr.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_infinityex2.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_infinityx.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_infinityex1.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons_precache.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\mod_zbb.h">
<Filter>dlls\gamemode</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbb\zbb_basebuilder.h">
<Filter>dlls\gamemode\zbb</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbb\zbb_ghost.h">
<Filter>dlls\gamemode\zbb</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb1\zb1_countdown.h">
<Filter>dlls\gamemode\zb1</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb1\zb1_zclass.h">
<Filter>dlls\gamemode\zb1</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zb1\zb1_const.h">
<Filter>dlls\gamemode\zb1</Filter>
</ClInclude>
<ClInclude Include="..\pm_shared\pm_movevars.h">
<Filter>pm_shared</Filter>
</ClInclude>
<ClInclude Include="..\pm_shared\pm_shared.h">
<Filter>pm_shared</Filter>
</ClInclude>
<ClInclude Include="..\pm_shared\pm_debug.h">
<Filter>pm_shared</Filter>
</ClInclude>
<ClInclude Include="..\pm_shared\pm_defs.h">
<Filter>pm_shared</Filter>
</ClInclude>
<ClInclude Include="..\pm_shared\pm_info.h">
<Filter>pm_shared</Filter>
</ClInclude>
<ClInclude Include="..\pm_shared\pm_materials.h">
<Filter>pm_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase\cbase_entity_factory.h">
<Filter>dlls\cbase</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase\cbase_locksound.h">
<Filter>dlls\cbase</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase\cbase_physint.h">
<Filter>dlls\cbase</Filter>
</ClInclude>
<ClInclude Include="..\public\const\const_client.h">
<Filter>public\const</Filter>
</ClInclude>
<ClInclude Include="..\public\const\const_server.h">
<Filter>public\const</Filter>
</ClInclude>
<ClInclude Include="..\public\const\const_shared.h">
<Filter>public\const</Filter>
</ClInclude>
<ClInclude Include="..\dlls\gamemode\zbb\zbb_zombie.h">
<Filter>dlls\gamemode\zbb</Filter>
</ClInclude>
<ClInclude Include="..\dlls\util\u_iterator.hpp">
<Filter>dlls\util</Filter>
</ClInclude>
<ClInclude Include="..\dlls\util\u_range.hpp">
<Filter>dlls\util</Filter>
</ClInclude>
<ClInclude Include="..\dlls\util\u_time.hpp">
<Filter>dlls\util</Filter>
</ClInclude>
<ClInclude Include="..\dlls\util\u_ebobase.hpp">
<Filter>dlls\util</Filter>
</ClInclude>
<ClInclude Include="..\dlls\util\u_functor.hpp">
<Filter>dlls\util</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_balrog7.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_gatling.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m2.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase\cbase_typelist.h">
<Filter>dlls\cbase</Filter>
</ClInclude>
<ClInclude Include="..\dlls\cbase\cbase_typelist_helper.h">
<Filter>dlls\cbase</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\z4b_dmp7a1x.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\z4b_m4a1razer.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_starchaserar.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m134.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m134ex.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m95xmas.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m134xmas.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_mg3xmas.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_janus7xmas.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\stdafx.h" />
<ClInclude Include="..\dlls\wpn_shared\wpn_sgdrill.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\weapons\RadiusDamage.hpp">
<Filter>dlls\weapons</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_chainsaw.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_tbarrel.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_bow.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_desperado.h">
<Filter>dlls</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_ak47dragon.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_knifedragon.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_m4a1dragon.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_zombiebomb.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\wpn_molotov.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\csgo_mag7.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\csgo_negev.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\csgo_bizon.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\csgo_cz75.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\csgo_sawedoff.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
<ClInclude Include="..\dlls\wpn_shared\csgo_tec9.h">
<Filter>dlls\wpn_shared</Filter>
</ClInclude>
</ItemGroup>
</Project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yoyojacky/CSMoE.git
git@gitee.com:yoyojacky/CSMoE.git
yoyojacky
CSMoE
CSMoE
master

搜索帮助