mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-09-01 07:08:42 +02:00
19 lines
370 B
VB.net
19 lines
370 B
VB.net
Namespace Items.MegaStones
|
|
|
|
''' <summary>
|
|
''' The Mega Stone for Garchompite.
|
|
''' </summary>
|
|
<Item(518, "Garchompite")>
|
|
Public Class Garchompite
|
|
|
|
Inherits MegaStone
|
|
|
|
Public Sub New()
|
|
MyBase.New("Garchompite", 445)
|
|
_textureRectangle = New Rectangle(24, 24, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|