blob: 827e495a120b6c897e573ba44c22d94e1f0d2575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using UnityEngine;
namespace I2.Loc;
public class TermsPopup : PropertyAttribute
{
public string Filter { get; private set; }
public TermsPopup(string filter = "")
{
Filter = filter;
}
}
|