Client LuaCsForBarotrauma
ISerializableEntity.cs
1 using System.Collections.Generic;
2 
3 namespace Barotrauma
4 {
5  public interface ISerializableEntity
6  {
7  string Name
8  {
9  get;
10  }
11 
12  Dictionary<Identifier, SerializableProperty> SerializableProperties
13  {
14  get;
15  }
16  }
17 }
Dictionary< Identifier, SerializableProperty > SerializableProperties