C2RenderResourceAdd.Inc
上传用户:yj_qiu
上传日期:2022-08-08
资源大小:23636k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Delphi

  1.   Result := High(Elements);
  2.   while (Result >= 0) and not IsEmpty(Elements[Result]) do Dec(Result);
  3.   if Result < 0 then begin                                             // No free slot
  4.     SetLength(Elements, Length(Elements)+1);
  5.     Result := High(Elements);
  6.   end;