cltype.pas

来自「千年源代码,只缺少控件,可以做二次开发用,好不容易得来的」· PAS 代码 · 共 54 行

PAS
54
字号
unit cltype;

interface

uses Controls;

const
   UNITX = 32;
   UNITY = 24;

   UNITXS = 16;
   UNITYS = 12;
type
  TAniInfo = record
     Action : Integer;
     Direction : Integer;
     Frame : Integer;
     FrameTime: Integer;
     Frames : array [0..26-1] of Integer;
     Pxs : array [0..26-1] of Integer;
     Pys : array [0..26-1] of Integer;
  end;
  PTAniInfo = ^TAniInfo;

  TDragItem = class (TDragObject)
    Selected: integer;
    Dragedid: integer;
    StdMode: byte;
    SourceID: Integer;
    sx, sy : word;
  end;

var
  MouseInfoStr : string = '';

//  AnsSocketHandle : integer = 0; 荤侩救窃
  DragItem: TDragItem;

implementation

initialization
begin
   DragItem := TDragItem.Create;
end;

finalization
begin
   DragItem.Free;
end;



end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?