mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 22:01:45 +00:00
Added support for "abstract" ZScript functions. Fixes #523
This commit is contained in:
parent
5bcb27e51f
commit
4eb223b3f0
1 changed files with 2 additions and 2 deletions
|
@ -617,9 +617,9 @@ namespace CodeImp.DoomBuilder.ZDoom
|
|||
|
||||
// try to read in a variable/method.
|
||||
bool bmethod = false;
|
||||
string[] availablemodifiers = new string[] { "static", "native", "action", "readonly", "protected", "private", "virtual", "override", "meta", "transient", "deprecated", "final", "play", "ui", "clearscope", "virtualscope", "version", "const" };
|
||||
string[] availablemodifiers = new string[] { "static", "native", "action", "readonly", "protected", "private", "virtual", "override", "meta", "transient", "deprecated", "final", "play", "ui", "clearscope", "virtualscope", "version", "const", "abstract" };
|
||||
string[] versionedmodifiers = new string[] { "version", "deprecated" };
|
||||
string[] methodmodifiers = new string[] { "action", "virtual", "override", "final" };
|
||||
string[] methodmodifiers = new string[] { "action", "virtual", "override", "final", "abstract" };
|
||||
HashSet<string> modifiers = new HashSet<string>();
|
||||
List<string> types = new List<string>();
|
||||
List<List<int>> typearraylens = new List<List<int>>();
|
||||
|
|
Loading…
Reference in a new issue