?? joffaclass.pas
字號:
unit joffaclass;
interface
Type
TObjType = (bonus, enemy, obj);
TObj = Class
private
public
py,vx,vy,ovy : single;
typo : integer;
ax,ay : single;
direction : byte;
tag : string[10];
pic : single;
energy,itag,stall,invince : integer;
istrampo,crashx,crashy : boolean;
pusher,pushable,blockcrash : boolean;
gravity : boolean;
constructor create(objtype : integer);
destructor free;
end;
implementation
constructor tobj.create;
begin
end;
destructor tobj.free;
begin
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -