13 lines
202 B
C#
13 lines
202 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Subsurface
|
|
{
|
|
interface IPropertyObject
|
|
{
|
|
Dictionary<string, ObjectProperty> ObjectProperties
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|