18 lines
287 B
C#
18 lines
287 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
public interface ISerializableEntity
|
|
{
|
|
string Name
|
|
{
|
|
get;
|
|
}
|
|
|
|
Dictionary<Identifier, SerializableProperty> SerializableProperties
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|