P3D-Legacy/P3D/Battle/BattleSystemV2/QueryObjects/RoamingPokemonFledQueryObje...

27 lines
582 B
VB.net
Raw Normal View History

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