Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stephen
IF3230-Tugas-Besar-Sister-2015
Commits
034855a0
Commit
034855a0
authored
Apr 26, 2015
by
Stephen
Browse files
Merged
parents
130ed454
ff3a8055
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/client/src/tcpclient/MainPage.java
View file @
034855a0
...
...
@@ -2267,8 +2267,8 @@ public class MainPage extends javax.swing.JFrame {
String
name
=
response
.
getString
(
"name"
);
mapLabel
.
setText
(
"Map: "
+
name
);
int
dimX
=
response
.
getInt
(
"width"
)
+
5
;
int
dimY
=
response
.
getInt
(
"height"
)
+
9
;
int
dimX
=
response
.
getInt
(
"width"
);
int
dimY
=
response
.
getInt
(
"height"
);
mapModel
=
new
MapTableModel
(
dimX
,
dimY
);
ImageIcon
playerIcon
=
new
ImageIcon
(
getClass
().
getResource
(
"images/player.png"
));
...
...
src/server/build/classes/tcpserver/TCPServer.class
View file @
034855a0
No preview for this file type
src/server/src/tcpserver/TCPServer.java
View file @
034855a0
...
...
@@ -40,7 +40,6 @@ public class TCPServer implements Runnable {
serverPort
=
6789
;
serverClientSocket
=
new
ServerSocket
(
serverPort
);
servers
=
new
ArrayList
<
Host
>();
thisIP
=
"167.205.71.56"
;
sql
=
new
MySQLAccess
();
findOfferTimes
=
new
String
[
10
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment