1 goog.provide('lime.DirtyObject'); 2 3 4 /** 5 * Dirty object (requires updates) 6 * @interface 7 */ 8 lime.DirtyObject = function() {}; 9 10 /** 11 * Method called to update all changed parameters to the screen 12 */ 13 lime.DirtyObject.prototype.update = function() {}; 14 15 16 // Todo: This file is badly named 17