Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaShared/Source/Serialization/ISerializableEntity.cs
Joonas Rikkonen 8e556f1c76 - Renamed a bunch of ObjectProperty-related stuff (ObjectProperty -> SerializableProperty, IPropertyObject -> ISerializableEntity, the "SerializableProperty" attribute -> Serialize).
- Rectangle serialization.
- Option to restrict numeric properties to a range of values.
- WIP generic ISerializableEntity editor.
2017-11-08 21:15:03 +02:00

18 lines
276 B
C#

using System.Collections.Generic;
namespace Barotrauma
{
interface ISerializableEntity
{
string Name
{
get;
}
Dictionary<string, SerializableProperty> SerializableProperties
{
get;
}
}
}