15 lines
215 B
VB.net
15 lines
215 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(191, "TM 01")>
|
||
|
Public Class TM01
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(True, 1500, 223)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|