Exemplo n.º 1
0
 internal static RadiusCursor Parse(IniParser parser, string name)
 {
     return(new RadiusCursor
     {
         Name = name,
         DecalTemplate = RadiusDecalTemplate.Parse(parser)
     });
 }
Exemplo n.º 2
0
 internal static RadiusCursor Parse(IniParser parser, CommandButtonRadiusCursorType type)
 {
     return(new RadiusCursor
     {
         Type = type,
         DecalTemplate = RadiusDecalTemplate.Parse(parser)
     });
 }
Exemplo n.º 3
0
 internal static RadiusCursor Parse(IniParser parser)
 {
     return(new RadiusCursor
     {
         Name = parser.ParseString(),
         DecalTemplate = RadiusDecalTemplate.Parse(parser)
     });
 }