mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-08 23:43:18 +02:00
- Add functions
- Code improvements
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace YesNt.Interpreter.Enums
|
||||
{
|
||||
internal enum Priority
|
||||
{
|
||||
Highest,
|
||||
VeryHigh,
|
||||
High,
|
||||
Normal,
|
||||
Low,
|
||||
VeryLow
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace YesNt.Interpreter.Enums
|
||||
{
|
||||
public enum SearchMode
|
||||
{
|
||||
StartOfLine,
|
||||
EndOfLine,
|
||||
Contains,
|
||||
Exact
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace YesNt.Interpreter.Enums
|
||||
{
|
||||
public enum SpaceAround
|
||||
{
|
||||
StartEnd,
|
||||
Start,
|
||||
End,
|
||||
None
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user