Files
LuaCsForBarotraumaEP/BarotraumaServer/Source/Items/Components/Machines/Steering.cs
Juan Pablo Arce 8f37e14917 Split Machines ItemComponents
There's still a lot of work to do before we can get the server to compile
2017-06-18 14:36:11 -03:00

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
}
}
}