hedgewars/uFLNetProtocol.pas
author unc0rr
Tue, 21 Jul 2015 23:46:52 +0300
branchqmlfrontend
changeset 10953 360e57620df3
parent 10951 89a7f617e091
child 11413 ffff8a0d1a76
permissions -rw-r--r--
Put types into a separate file

unit uFLNetProtocol;
interface

procedure passNetData(p: pointer); cdecl;

implementation
uses uFLNetTypes;

procedure passNetData(p: pointer); cdecl;
begin

end;

end.