/***************************************************************** * Copyright (C) Knights Warrior Corporation. All rights reserved. * * Author: 圣殿骑士(Knights Warrior) * Email: KnightsWarrior@msn.com * Website: http://www.cnblogs.com/KnightsWarrior/ https://github.com/knightswarrior * Create Date: 5/8/2010 * Usage: * * RevisionHistory * Date Author Description * *****************************************************************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace KnightsWarriorAutoupdater { public interface IAutoUpdater { void Update(); void RollBack(); } }