gl_local_add.pas

来自「delphi编的不错的贪吃蛇」· PAS 代码 · 共 34 行

PAS
34
字号
{$ALIGN ON}{$MINENUMSIZE 4}
unit gl_local_add;

interface

uses
  q_shared;

type
  imagetype_t = (it_skin, it_sprite, it_wall, it_pic, it_sky);

  image_p = ^image_t;
  image_t = record
    name  : array [0..MAX_QPATH-1] of char;  // game path, including extension
    type_ : imagetype_t;
    width, height,			     // source image
    upload_width, upload_height,             // after power of two and picmip
    registration_sequence        : integer;  // 0 = free

//	struct msurface_s	*texturechain;	// for sort-by-texture world drawing
    texturechain: pointer;//msurface_p;  // for sort-by-texture world drawing

    texnum : integer;						// gl texture binding
    sl, tl, sh, th : Single;   		     // 0,0 - 1,1 unless part of the scrap
    scrap,
    has_alpha,
    paletted  : qboolean;
  end;


implementation

end.
 

⌨️ 快捷键说明

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