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