11 lines
330 B
C#
11 lines
330 B
C#
using Qrakhen.Qamp.Core.Collections;
|
|
|
|
namespace Qrakhen.Qamp.Core.Values.Objects;
|
|
|
|
public class Context(Function function, ValueType type = ValueType.Context) : Obj(type)
|
|
{
|
|
public Function Function = function;
|
|
public PushStack<Outer> Outers = new();
|
|
|
|
public override string ToString() => $"{Function.Name}(){{}}";
|
|
} |