Files
LuaCsForBarotraumaEP/Subsurface/IPropertyObject.cs

18 lines
260 B
C#

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