15 lines
216 B
VB.net
15 lines
216 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(400, "TM 100")>
|
||
|
Public Class TM100
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(True, 3000, 53)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|