gh/drop_m.pas

16 lines
167 B
ObjectPascal
Raw Normal View History

2026-01-10 07:09:22 +00:00
unit drop_m;
interface
uses creature_m;
procedure UpdateDropState(var cr: creature);
implementation
procedure UpdateDropState(var cr: creature);
begin
end;
end.