ok no pasa nada tu tienes esto:
   
Código Javascript
:
Ver originalfunction DeusExMachinaPrototype(){
    
    this.Instanced  = false;
    this.NumberOfPoints = 100;
    this.ProportionResolutionX = (screen.width/1920); 
    this.ProportionResolutionY = (screen.height/1080);
    
    
    
        this.CreateInfoElements = function CreateInfoElements(){};
 
        
}
  
Con prototipos:   
Código Javascript
:
Ver originalfunction general (){
this.propiedad= "algo";
};
 
general.prototype = {
metodo:function(){}
};
 
//ahora el protoype es modificado apunta al constructor de la funcion
//es decir a la funcion general y puede acceder a sus metodos.
// y no es una copia en memoria del objeto ahora el metodo se encuentra en el prototype 
var instancia = new general();