gh-scrum/src/drop_m.pas

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.