15 lines
214 B
VB.net
15 lines
214 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(247, "HM 01")>
|
||
|
Public Class HM01
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(False, 100, 15)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|