TermsPopup.cs 228 B

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