Skip to content

Instantly share code, notes, and snippets.

@baba-s
Created March 2, 2014 08:30
Show Gist options
  • Save baba-s/9303663 to your computer and use it in GitHub Desktop.
Save baba-s/9303663 to your computer and use it in GitHub Desktop.
using UnityEngine;
public class RegexAttribute : PropertyAttribute
{
public readonly string Pattern;
public readonly string HelpMessage;
public RegexAttribute(string pattern, string helpMessage)
{
Pattern = pattern;
HelpMessage = helpMessage;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment