~chuckw20/widelands/New_atlantean_carrier_animations

« back to all changes in this revision

Viewing changes to src/logic/editor_game_base.h

  • Committer: Nicolai Hähnle
  • Date: 2010-05-09 11:21:24 UTC
  • mfrom: (5141.1.7 bob-saving)
  • Revision ID: prefect_@gmx.net-20100509112124-14ap938z6yuqy38j
Merge branch bob-saving

All classes derived from Bob now use the new save system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
        }
127
127
        // Get a tribe from the loaded list, when available
128
128
        Tribe_Descr const * get_tribe(const char * tribe) const;
 
129
        Tribe_Descr const * get_tribe(const std::string& name) const {return get_tribe(name.c_str());}
129
130
 
130
131
        void inform_players_about_ownership(Map_Index, Player_Number);
131
132
        void inform_players_about_immovable(Map_Index, Map_Object_Descr const *);