Changeset 093c141 in network-game for client/Client


Ignore:
Timestamp:
Feb 18, 2013, 7:00:03 PM (12 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
f401cac
Parents:
60017fc (diff), 384b7e0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of github.com:weretaco/network-game

Location:
client/Client
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • client/Client/Client.vcxproj.filters

    r60017fc r093c141  
    5656    </ClCompile>
    5757    <ClCompile Include="..\..\common\WorldMap.cpp">
    58       <Filter>Source Files\gui</Filter>
     58      <Filter>Source Files\common</Filter>
    5959    </ClCompile>
    6060  </ItemGroup>
  • client/Client/main.cpp

    r60017fc r093c141  
    2929#include "../../common/Message.h"
    3030#include "../../common/Common.h"
     31#include "../../common/WorldMap.h"
    3132#include "../../common/Player.h"
    32 #include "../../common/WorldMap.h"
    3333
    3434#include "Window.h"
     
    160160   }
    161161
    162    WorldMap* gameMap = WorldMap::createDefaultMap();
     162   WorldMap* gameMap = WorldMap::loadMapFromFile("../../data/map.txt");
     163   //delete gameMap;
     164   //gameMap = WorldMap::createDefaultMap();
    163165
    164166   wndLogin = new Window(0, 0, SCREEN_W, SCREEN_H);
Note: See TracChangeset for help on using the changeset viewer.