示例#1
0
 public void Parameter(OsgItem x, TypeDesc type, OsgClassMode @class)
 {
     throw new NotImplementedException();
 }
示例#2
0
文件: Parser.cs 项目: adbrowne/abcm
 private void enter(OsgClassMode typ, int i, string name, TypeDesc type)
 {
     OsgObject osg = new OsgObject();
     osg.@class = typ;
     osg.val = i;
     osg.name = name;
     osg.type = type;
     osg.dsc = null;
     osg.next = topScope.next;
     topScope.next = osg;
 }