//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 loyalsoft. All rights reserved.
// Homepage: http://www.game7000.com/
// Feedback: http://www.game7000.com/
//------------------------------------------------------------
using System;
namespace GameFramework
{
///
/// 游戏框架中包含事件数据的类的基类。
///
public abstract class GameFrameworkEventArgs : EventArgs, IReference
{
///
/// 初始化游戏框架中包含事件数据的类的新实例。
///
public GameFrameworkEventArgs()
{
}
///
/// 清理引用。
///
public abstract void Clear();
}
}