Created
March 2, 2014 08:30
-
-
Save baba-s/9303663 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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