- Rectangle serialization. - Option to restrict numeric properties to a range of values. - WIP generic ISerializableEntity editor.
18 lines
276 B
C#
18 lines
276 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
interface ISerializableEntity
|
|
{
|
|
string Name
|
|
{
|
|
get;
|
|
}
|
|
|
|
Dictionary<string, SerializableProperty> SerializableProperties
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|