micromiss / Urho3D-Demo-AirFighter

This is a simple multiplayer(LAN) 2d shooting game demo which built based on the open source cross-platform game engine Urho3D and coded in c++. There are still a lot of bugs in our project yet we are still updating it aperiodically. If you are interested in games and game engines, welcome to join us!
9 stars 10 forks source link

There are some codes only works with Visual Studio #2

Open buyijie opened 7 years ago

buyijie commented 7 years ago

There are some codes that are not valid C++, so they can't pass the compiler on my Ubuntu system. I list some example in here:

  1. Missile.h:24:23: error: ‘>>’ should be ‘> >’ within a nested template argument list
  2. Fighter.h:88:2: error: extra qualification ‘Fighter::’ on member ‘Fighter’ [-fpermissive]
  3. AirFighter.cpp:164:25: error: ‘TextureFilterMode’ is not a class or namespace

And more...

micromiss commented 7 years ago

I haven't tryed it on Ubuntu before. Somethings things will go wrong when the environment changed and I don't know why. You may need to download and build Urho3D first from https://urho3d.github.io/ because this project may not run independently without Urho3D environment. And maybe you can check the 'How to build' section again. Thanks for your attention Mr.Bu kakaka!