Example #1
0
    public OSLibObject(int id, 
						string type, 
						string brand,
						string thumbnail,
						OSLib library,
						OSLibModel model,
						OSLibModules modules,
						OSLibCategory cat,
						bool mode2d,
						bool allowscale,
	                    int ScaleGenerale)
    {
        _id = id;
        _type = type;
        _brand = brand;
        _thumbnailPath = thumbnail;
        _library = library;
        _model = model;
        _modules = modules;
        _categorie = cat;
        _mode2d = mode2d;
        _allowscale = allowscale;
        _ScaleGenerale = ScaleGenerale;
    }
Example #2
0
 public void SetModules(OSLibModules modules)
 {
     _modules = modules;
 }
Example #3
0
 public void AddModule(OSLibModules modules)
 {
     _modules.Add (modules);
 }