mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 11:42:31 +01:00
41 lines
950 B
C++
41 lines
950 B
C++
// ==============================================================
|
|
// This file is part of Glest (www.glest.org)
|
|
//
|
|
// Copyright (C) 2001-2008 Martio Figueroa
|
|
//
|
|
// You can redistribute this code and/or modify it under
|
|
// the terms of the GNU General Public License as published
|
|
// by the Free Software Foundation; either version 2 of the
|
|
// License, or (at your option) any later version
|
|
// ==============================================================
|
|
|
|
|
|
//this file is not used
|
|
|
|
/*
|
|
|
|
#ifndef _MAPEDITOR_RENDERER_H_
|
|
#define _MAPEDITOR_RENDERER_H_
|
|
|
|
#include "map_preview.h"
|
|
|
|
using namespace Shared::Map;
|
|
|
|
namespace MapEditor {
|
|
|
|
// ===============================================
|
|
// class Renderer
|
|
// ===============================================
|
|
|
|
class Renderer {
|
|
public:
|
|
void init(int clientW, int clientH);
|
|
void renderMap(MapPreview *map, int x, int y, int clientW, int clientH, int cellSize, bool grid=false);
|
|
};
|
|
|
|
}// end namespace
|
|
|
|
#endif
|
|
|
|
*/
|