comparison engine/core/view/renderers/cellselectionrenderer.i @ 255:51cc05d862f2

Merged editor_rewrite branch to trunk. This contains changes that may break compatibility against existing clients. For a list of changes that may affect your client, see: http://wiki.fifengine.de/Changes_to_pychan_and_FIFE_in_editor_rewrite_branch
author cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
date Mon, 08 Jun 2009 16:00:02 +0000
parents 90005975cdbb
children b2feacaed53c
comparison
equal deleted inserted replaced
254:10b5f7f36dd4 255:51cc05d862f2
30 class CellSelectionRenderer: public RendererBase { 30 class CellSelectionRenderer: public RendererBase {
31 public: 31 public:
32 virtual ~CellSelectionRenderer(); 32 virtual ~CellSelectionRenderer();
33 std::string getName(); 33 std::string getName();
34 static CellSelectionRenderer* getInstance(IRendererContainer* cnt); 34 static CellSelectionRenderer* getInstance(IRendererContainer* cnt);
35 void selectLocation(Location* loc); 35 void reset();
36 void selectLocation(const Location* loc);
37 void deselectLocation(const Location* loc);
38 const std::vector<Location> getLocations() const;
36 39
37 private: 40 private:
38 CellSelectionRenderer(RenderBackend* renderbackend, int position); 41 CellSelectionRenderer(RenderBackend* renderbackend, int position);
39 }; 42 };
40 43