home *** CD-ROM | disk | FTP | other *** search
/ GameStar 1999 July / Gamestar_07_1999-07_cd2.bin / Program / Fillets.exe / 0 / RCDATA / TROOM / TROOM.txt
Text File  |  1998-03-27  |  816b  |  39 lines

  1. object Room: TRoom
  2.   Left = 221
  3.   Top = 221
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Loading room...'
  7.   ClientHeight = 351
  8.   ClientWidth = 536
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = [fsBold]
  14.   Position = poScreenCenter
  15.   OnCloseQuery = FormCloseQuery
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   OnKeyDown = FormKeyDown
  19.   OnKeyUp = FormKeyUp
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Image1: TImage
  23.     Left = 0
  24.     Top = 0
  25.     Width = 536
  26.     Height = 351
  27.     Align = alClient
  28.     OnMouseDown = Image1MouseDown
  29.     OnMouseMove = Image1MouseMove
  30.     OnMouseUp = Image1MouseUp
  31.   end
  32.   object Timer1: TTimer
  33.     Enabled = False
  34.     Interval = 90
  35.     Left = 16
  36.     Top = 16
  37.   end
  38. end
  39.