1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/games/glob2/files/patch-src__Game.h
Pawel Pekala 3e334a6274 - Fix build on -current
- Convert to new options framework, add PORTAUDIO option
- Strip glob2 binary

PR:		ports/184841
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-12-25 12:15:23 +00:00

37 lines
589 B
C

--- src/Game.h.orig
+++ src/Game.h
@@ -82,6 +82,16 @@
DRAW_OVERLAY = 0x100,
};
+ struct BuildProject
+ {
+ int posX;
+ int posY;
+ int teamNumber;
+ int typeNum;
+ int unitWorking;
+ int unitWorkingFuture;
+ };
+
/// This method will prepare the game with this mapHeader
void setMapHeader(const MapHeader& mapHeader);
@@ -149,16 +159,6 @@
BOTTOM_TO_TOP
};
- struct BuildProject
- {
- int posX;
- int posY;
- int teamNumber;
- int typeNum;
- int unitWorking;
- int unitWorkingFuture;
- };
-
///Initiates Game
void init(GameGUI *gui, MapEdit* edit);