- Rectangle serialization. - Option to restrict numeric properties to a range of values. - WIP generic ISerializableEntity editor.
14 lines
281 B
C#
14 lines
281 B
C#
using Barotrauma.Networking;
|
|
using Microsoft.Xna.Framework;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
partial class Hull : MapEntity, ISerializableEntity, IServerSerializable
|
|
{
|
|
public override bool IsMouseOn(Vector2 position)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|