MosswartMassacre/Unused/Decal.Adapter/DirectoryProxy.cs
2025-06-09 02:03:11 +02:00

12 lines
272 B
C#

using System;
using Decal.Interop.Core;
namespace Decal.Adapter;
public sealed class DirectoryProxy : MarshalByRefObject, IDecalDirectory
{
public object Lookup(string strName)
{
throw new NotImplementedException("The method or operation is not implemented.");
}
}