28 lines
718 B
C#
28 lines
718 B
C#
/*****************************************************************
|
||
* 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();
|
||
}
|
||
}
|