-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.bas
24 lines (23 loc) · 868 Bytes
/
Main.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Attribute VB_Name = "MainOS"
Option Explicit
Public Mons As New GMotion.Motion
Public Map As New GMotion.Map
Public Load As New GMotion.Load
Public Member As New GMotion.Member
Public SEvents As New SEvents
Public intFps As Integer ' Fps
Public Company As String 'èìÿ êîìïàíèè
Public Level As Integer 'íîìåð óðîâíÿ
Public NumPersonag As Integer 'êîë. ïåðñîíàæåé
Public Files As Byte 'êîë. ïàïîê
Public Xp As Integer, Yp As Integer ' êîîîðäèíàòû ìåñòíîñòè
Public Lifes As Byte 'æèçíè
Public Money As Integer 'êîë. äåíåã
Public startLifes As Byte 'íà íà÷àëî óðîâíÿ æèçíè
Public startMoney As Integer 'íà íà÷àëî óðîâíÿ êîë. äåíåã
Public SaveMode As Boolean 'âèä ñòðàíèöû çàãðóçêè
Sub Main()
Member.MCatch = False
intFps = 24
frmMain.Show
End Sub