Add backward compatibility for skin.

This commit is contained in:
2023-02-17 16:24:24 +08:00
parent db0165d145
commit 675ce68073
5 changed files with 32 additions and 17 deletions

View File

@@ -5,7 +5,7 @@ using System.Reflection;
namespace Cryville.Crtr {
internal class RulesetInterpreter : PdtInterpreter {
public RulesetInterpreter(string src, Binder binder) : base(src, typeof(PdtRuleset), binder) { }
public RulesetInterpreter(string src, Binder binder) : base(src, binder) { }
readonly List<RulesetSelector> s = new List<RulesetSelector>();
readonly List<string> a = new List<string>();