27 lines
617 B
C#
27 lines
617 B
C#
using Barotrauma.Networking;
|
|
using FarseerPhysics;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Xml.Linq;
|
|
using Voronoi2;
|
|
|
|
namespace Barotrauma.Items.Components
|
|
{
|
|
partial class Steering : Powered, IServerSerializable, IClientSerializable
|
|
{
|
|
public bool MaintainPos;
|
|
public bool LevelStartSelected;
|
|
public bool LevelEndSelected;
|
|
|
|
private void InitProjSpecific()
|
|
{
|
|
//do nothing
|
|
}
|
|
}
|
|
}
|