New dialog to select asset type before creation

This commit is contained in:
2018-12-01 22:36:57 +01:00
parent 1a7012ef66
commit fdf09d651d
21 changed files with 467 additions and 147 deletions

View File

@ -222,6 +222,10 @@ public class XClassLoader {
return Collections.unmodifiableCollection(h);
}
public Class getClassByName(String name){
return byName.get(name);
}
}
}