Added passing UndoBuffer to rebuildable

This commit is contained in:
Lars Brubaker 2018-03-08 17:23:03 -08:00
parent 4e41fa6694
commit 9cc6d5f469
43 changed files with 208 additions and 99 deletions

View file

@ -28,10 +28,12 @@ either expressed or implied, of the FreeBSD Project.
*/
using MatterHackers.Agg.UI;
namespace MatterHackers.MatterControl.DesignTools
{
public interface IRebuildable
{
void Rebuild();
void Rebuild(UndoBuffer undoBuffer);
}
}