15 lines
214 B
VB.net
15 lines
214 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(356, "TM 56")>
|
||
|
Public Class TM56
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(True, 2000, 32)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|