mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 21:32:47 +00:00
9 lines
184 B
C#
9 lines
184 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.EchoesOfTheEye.PictureFrameDoors.WorldObjects;
|
|
|
|
internal interface IQSBPictureFrameDoor : IWorldObject
|
|
{
|
|
public void SetOpenState(bool open);
|
|
}
|