module1.bas

来自「游戏代码]射击(导弹)游戏的源程序」· BAS 代码 · 共 20 行

BAS
20
字号
Attribute VB_Name = "Module1"
Declare Function ShowCursor Lib "user32" (ByVal bShow As Long) As Long
Type ExplosionData
    Active As Boolean
    CurrX As Integer
    CurrY As Integer
    ExplosionStage As Integer
    ExplosionDirection As Integer
End Type

Type BogeyData
    x1 As Integer
    x2 As Integer
    y1 As Integer
    y2 As Integer
    Length As Integer
    Angle As Integer
    Active As Integer
End Type

⌨️ 快捷键说明

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