mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-22 18:28:41 +02:00
19 lines
353 B
VB.net
19 lines
353 B
VB.net
Namespace Items.MegaStones
|
|
|
|
''' <summary>
|
|
''' The Mega Stone for Mawile.
|
|
''' </summary>
|
|
<Item(527, "Mawilite")>
|
|
Public Class Mawilite
|
|
|
|
Inherits MegaStone
|
|
|
|
Public Sub New()
|
|
MyBase.New("Mawile", 303)
|
|
_textureRectangle = New Rectangle(0, 48, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|