19 lines
357 B
VB.net
19 lines
357 B
VB.net
Namespace Items.MegaStones
|
|
|
|
''' <summary>
|
|
''' The Mega Stone for Latios.
|
|
''' </summary>
|
|
<Item(543, "Latiosite")>
|
|
Public Class Latiosite
|
|
|
|
Inherits MegaStone
|
|
|
|
Public Sub New()
|
|
MyBase.New("Latios", 381)
|
|
_textureRectangle = New Rectangle(192, 72, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|