17 lines
378 B
C#
17 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Barotrauma.Items.Components
|
|
{
|
|
partial class OutpostTerminal : ItemComponent
|
|
{
|
|
public OutpostTerminal(Item item, XElement element) : base(item, element)
|
|
{
|
|
InitProjSpecific(element);
|
|
}
|
|
|
|
partial void InitProjSpecific(XElement element);
|
|
}
|
|
}
|