Last change
on this file was 317, checked in by chronos, 6 months ago |
- Modified: Remove U prefix from unit names.
- Modified: Use TFormEx for all forms for code simplification.
|
File size:
252 bytes
|
Line | |
---|
1 | unit GameConnection;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils;
|
---|
7 |
|
---|
8 | type
|
---|
9 | TNetworkAddress = record
|
---|
10 | Address: string;
|
---|
11 | Port: Word;
|
---|
12 | end;
|
---|
13 |
|
---|
14 | TConnectParams = class
|
---|
15 | NetworkAddress: TNetworkAddress;
|
---|
16 | end;
|
---|
17 |
|
---|
18 |
|
---|
19 | implementation
|
---|
20 |
|
---|
21 | end.
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.