13 lines
210 B
C#
13 lines
210 B
C#
|
using System;
|
||
|
|
||
|
namespace DunGen
|
||
|
{
|
||
|
[Serializable]
|
||
|
public sealed class LockedDoorwayAssociation
|
||
|
{
|
||
|
public DoorwaySocket Socket;
|
||
|
|
||
|
public GameObjectChanceTable LockPrefabs = new GameObjectChanceTable();
|
||
|
}
|
||
|
}
|