19 lines
371 B
VB.net
19 lines
371 B
VB.net
|
Namespace Items.MegaStones
|
||
|
|
||
|
''' <summary>
|
||
|
''' The Mega Stone for Houndoomin.
|
||
|
''' </summary>
|
||
|
<Item(523, "Houndoominite")>
|
||
|
Public Class Houndoominite
|
||
|
|
||
|
Inherits MegaStone
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New("Houndoom", 229)
|
||
|
_textureRectangle = New Rectangle(144, 24, 24, 24)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|