Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
102 lines
2.9 KiB
Plaintext
102 lines
2.9 KiB
Plaintext
VERSION 5.00
|
|
Begin VB.Form frmAbout
|
|
BorderStyle = 3 'Fixed Dialog
|
|
Caption = "About Scrawl"
|
|
ClientHeight = 2340
|
|
ClientLeft = 2340
|
|
ClientTop = 1935
|
|
ClientWidth = 4260
|
|
ClipControls = 0 'False
|
|
LinkTopic = "Form2"
|
|
MaxButton = 0 'False
|
|
MinButton = 0 'False
|
|
ScaleHeight = 1615.11
|
|
ScaleMode = 0 'User
|
|
ScaleWidth = 4000.36
|
|
ShowInTaskbar = 0 'False
|
|
StartUpPosition = 1 'CenterOwner
|
|
Begin VB.PictureBox picIcon
|
|
AutoSize = -1 'True
|
|
ClipControls = 0 'False
|
|
Height = 540
|
|
Left = 240
|
|
Picture = "frmAbout.frx":0000
|
|
ScaleHeight = 337.12
|
|
ScaleMode = 0 'User
|
|
ScaleWidth = 337.12
|
|
TabIndex = 1
|
|
Top = 240
|
|
Width = 540
|
|
End
|
|
Begin VB.CommandButton cmdOK
|
|
Cancel = -1 'True
|
|
Caption = "OK"
|
|
Default = -1 'True
|
|
BeginProperty Font
|
|
Name = "Arial"
|
|
Size = 9.75
|
|
Charset = 0
|
|
Weight = 400
|
|
Underline = 0 'False
|
|
Italic = 0 'False
|
|
Strikethrough = 0 'False
|
|
EndProperty
|
|
Height = 345
|
|
Left = 1500
|
|
TabIndex = 0
|
|
Top = 1560
|
|
Width = 1260
|
|
End
|
|
Begin VB.Label lblDescription
|
|
Caption = "Copyright ©1999 Microsoft Corporation"
|
|
ForeColor = &H00000000&
|
|
Height = 330
|
|
Left = 1050
|
|
TabIndex = 2
|
|
Top = 720
|
|
Width = 2925
|
|
End
|
|
Begin VB.Label lblTitle
|
|
Caption = "Scrawl (Visual Basic Version)"
|
|
BeginProperty Font
|
|
Name = "Arial"
|
|
Size = 9.75
|
|
Charset = 0
|
|
Weight = 400
|
|
Underline = 0 'False
|
|
Italic = 0 'False
|
|
Strikethrough = 0 'False
|
|
EndProperty
|
|
ForeColor = &H00000000&
|
|
Height = 345
|
|
Left = 1050
|
|
TabIndex = 3
|
|
Top = 240
|
|
Width = 2925
|
|
End
|
|
End
|
|
Attribute VB_Name = "frmAbout"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = False
|
|
Attribute VB_PredeclaredId = True
|
|
Attribute VB_Exposed = False
|
|
|
|
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
|
'
|
|
' Copyright (C) 1999-2001 Microsoft Corporation. All Rights Reserved.
|
|
'
|
|
' File: FrmAbout.frm
|
|
' Content: About box for scrawlb
|
|
'
|
|
'
|
|
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
|
|
|
|
|
Option Explicit
|
|
|
|
|
|
Private Sub cmdOK_Click()
|
|
Unload Me
|
|
End Sub
|
|
|