gh/drop_m.pas
2026-01-10 12:09:22 +05:00

16 lines
167 B
ObjectPascal

unit drop_m;
interface
uses creature_m;
procedure UpdateDropState(var cr: creature);
implementation
procedure UpdateDropState(var cr: creature);
begin
end;
end.