source: trunk/GameConnection.pas

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 
1unit GameConnection;
2
3interface
4
5uses
6 Classes, SysUtils;
7
8type
9 TNetworkAddress = record
10 Address: string;
11 Port: Word;
12 end;
13
14 TConnectParams = class
15 NetworkAddress: TNetworkAddress;
16 end;
17
18
19implementation
20
21end.
22
Note: See TracBrowser for help on using the repository browser.