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