15 lines
222 B
VB.net
15 lines
222 B
VB.net
|
Namespace Items.Gems
|
||
|
|
||
|
<Item(638, "Flying Gem")>
|
||
|
Public Class FlyingGem
|
||
|
|
||
|
Inherits GemItem
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(Element.Types.Flying)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|