P3D-Legacy/P3D/Pokemon/Items/MegaStones/Houndoominite.vb

19 lines
371 B
VB.net
Raw Normal View History

2016-09-19 03:26:44 +02:00
Namespace Items.MegaStones
2016-09-07 18:50:38 +02:00
''' <summary>
''' The Mega Stone for Houndoomin.
''' </summary>
<Item(523, "Houndoominite")>
2016-09-07 18:50:38 +02:00
Public Class Houndoominite
Inherits MegaStone
Public Sub New()
2016-09-20 06:22:25 +02:00
MyBase.New("Houndoom", 229)
_textureRectangle = New Rectangle(144, 24, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
2016-09-19 03:26:44 +02:00
End Namespace