P3D-Legacy/P3D/Battle/BattleSystemV2/QueryObjects/ChoosePokemonQueryObject.vb

26 lines
528 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace BattleSystem
Public Class ChoosePokemonQueryObject
Inherits QueryObject
Dim _ready As Boolean = False
Dim _opened As Boolean = False
Public Sub New()
MyBase.New(QueryTypes.ChoosePokemon)
End Sub
Public Overrides Sub Update(BV2Screen As BattleScreen)
End Sub
Public Overrides ReadOnly Property IsReady As Boolean
Get
Return _ready
End Get
End Property
End Class
End Namespace