Files
LuaCsForBarotraumaEP/Subsurface/Source/IPropertyObject.cs

18 lines
260 B
C#

using System.Collections.Generic;
namespace Barotrauma
{
interface IPropertyObject
{
string Name
{
get;
}
Dictionary<string, ObjectProperty> ObjectProperties
{
get;
}
}
}