WIn_RustTools/RustTools/Helpers/NotOfficialConverter.cs

23 lines
547 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RustTools.muqing;
namespace RustTools.Helpers;
public class NotOfficialConverter
{
public object Convert(object value, Type targetType, object parameter, string language)
{
var id = value as string;
gj.sc(id);
return id=="aa";
}
public object ConvertBack(object value, Type targetType, object parameter, string language)
{
throw new NotImplementedException();
}
}