(svn r12472) -Codechange: remove unneeded declaration of ViewPort and DrawPixelInfo.

This commit is contained in:
rubidium 2008-03-28 16:38:18 +00:00
parent 0f552a88a7
commit ff3a401404
4 changed files with 4 additions and 4 deletions

View File

@ -10,8 +10,6 @@
// Forward declarations of structs.
struct Waypoint;
struct ViewPort;
struct DrawPixelInfo;
typedef byte LandscapeID;
typedef uint16 EngineID;
typedef uint16 UnitID;

View File

@ -3,6 +3,8 @@
#ifndef TEXTEFF_HPP
#define TEXTEFF_HPP
#include "gfx_type.h"
/**
* Text effect modes.
*/

View File

@ -50,8 +50,6 @@ StringID VehicleInTheWayErrMsg(const Vehicle* v);
Vehicle *FindVehicleBetween(TileIndex from, TileIndex to, byte z, bool without_crashed = false);
Vehicle *GetVehicleTunnelBridge(TileIndex tile, TileIndex endtile);
Vehicle *CheckClickOnVehicle(const ViewPort *vp, int x, int y);
void DecreaseVehicleValue(Vehicle *v);
void CheckVehicleBreakdown(Vehicle *v);
void AgeVehicle(Vehicle *v);

View File

@ -101,4 +101,6 @@ static inline uint GetVehicleListHeight(VehicleType type)
/* Unified window procedure */
void ShowVehicleViewWindow(const Vehicle *v);
Vehicle *CheckClickOnVehicle(const ViewPort *vp, int x, int y);
#endif /* VEHICLE_GUI_H */