mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-22 10:18:40 +02:00
19 lines
355 B
VB.net
19 lines
355 B
VB.net
Namespace Items.MegaStones
|
|
|
|
''' <summary>
|
|
''' The Mega Stone for Gengar.
|
|
''' </summary>
|
|
<Item(520, "Gengarite")>
|
|
Public Class Gengarite
|
|
|
|
Inherits MegaStone
|
|
|
|
Public Sub New()
|
|
MyBase.New("Gengar", 94)
|
|
_textureRectangle = New Rectangle(72, 24, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|