hedgewars/uFLDrawnMap.pas
author unc0rr
Sat, 26 Dec 2015 22:29:57 +0300
branchqmlfrontend
changeset 11467 33a0e3a14ddc
child 11485 b0c34402038c
permissions -rw-r--r--
- Fix passing of ansistrings via ipc - Some work on getting drawn maps from network (missing zlib unpack)

unit uFLDrawnMap;
interface

function decodeDrawnMap(data: ansistring): ansistring;

implementation
uses uUtils;

function decodeDrawnMap(data: ansistring): ansistring;
begin
end;

end.