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