Files
LuaCsForBarotraumaEP/Subsurface/IPropertyObject.cs
2015-06-07 18:03:08 +03:00

13 lines
202 B
C#

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