-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpaceWar2.pro
80 lines (80 loc) · 1.73 KB
/
SpaceWar2.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# -------------------------------------------------
# Project created by QtCreator 2009-05-20T00:20:58
# -------------------------------------------------
QT += network \
opengl
TARGET = SpaceWar2
TEMPLATE = app
SOURCES += main.cpp \
swGame.cpp \
swObject.cpp \
swStream.cpp \
swDrawable.cpp \
swVector.cpp \
swStarfield.cpp \
swFactory.cpp \
swMesh.cpp \
swFont.cpp \
swLabel.cpp \
swPhysical.cpp \
swSimulator.cpp \
swPlayer.cpp \
swShip.cpp \
swClient.cpp \
swBitmask.cpp \
swMessage.cpp \
swServer.cpp \
swClientInitMsg.cpp \
swPlayerCreateMsg.cpp \
swPhysCreateMsg.cpp \
swStar.cpp \
swPlayerInputMsg.cpp \
swPhysUpdateMsg.cpp \
swMissile.cpp \
swPhysDeleteMsg.cpp \
swPlayerKillMsg.cpp \
swDebris.cpp \
swHeadsUpDisplay.cpp \
swMainMenu.cpp \
swShipMenu.cpp \
swNameMenu.cpp \
swLobbyMenu.cpp \
swTextMenu.cpp \
swHostMenu.cpp \
swReadyMsg.cpp
HEADERS += swGame.h \
swObject.h \
swStream.h \
swDrawable.h \
swVector.h \
swStarfield.h \
swFactory.h \
swMesh.h \
swFont.h \
swLabel.h \
swPhysical.h \
swSimulator.h \
swPlayer.h \
swShip.h \
swClient.h \
swBitmask.h \
swMessage.h \
swServer.h \
swClientInitMsg.h \
swPlayerCreateMsg.h \
swPhysCreateMsg.h \
swStar.h \
swPlayerInputMsg.h \
swPhysUpdateMsg.h \
swMissile.h \
swPhysDeleteMsg.h \
swPlayerKillMsg.h \
swDebris.h \
swHeadsUpDisplay.h \
swMainMenu.h \
swShipMenu.h \
swNameMenu.h \
swLobbyMenu.h \
swTextMenu.h \
swHostMenu.h \
swReadyMsg.h