launchmod.bas
来自「我刚找到的撞球游戏原代码.rar是一个横好玩的游戏不知道你玩过没有」· BAS 代码 · 共 13 行
BAS
13 行
Attribute VB_Name = "LaunchMod"
Public Sub Pause(PauseTime As Double) ' waits
Dim StartTime As Double
StartTime = Timer
Do While Timer < PauseTime + StartTime
DoEvents
Loop
End Sub
Public Sub ThisDir() ' changes the dir to this dir
ChDrive App.Path
ChDir App.Path
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?