mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 12:35:35 +08:00
13 lines
232 B
C#
13 lines
232 B
C#
using Jint;
|
|
using Jint.Native.Object;
|
|
|
|
namespace BililiveRecorder.Core.Scripting
|
|
{
|
|
internal class PlainOldJsObject : ObjectInstance
|
|
{
|
|
public PlainOldJsObject(Engine engine) : base(engine)
|
|
{
|
|
}
|
|
}
|
|
}
|