AD2ThickHandler.cs 475 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4
using System;

namespace FLY.Thick.Base.Server
{
潘栩锋's avatar
潘栩锋 committed
5 6 7 8 9 10
    /// <summary>
    /// int 版的 ad->thick 准备淘汰
    /// </summary>
    /// <param name="ad"></param>
    /// <returns></returns>
    [Obsolete("准备 被 AD2ThkHandler 替代")]
潘栩锋's avatar
潘栩锋 committed
11
    public delegate int AD2ThickHandler(int ad);
潘栩锋's avatar
潘栩锋 committed
12 13 14 15 16 17
    /// <summary>
    /// double 版的 ad->thick
    /// </summary>
    /// <param name="ad"></param>
    /// <returns></returns>
    public delegate double AD2ThkHandler(int ad);
潘栩锋's avatar
潘栩锋 committed
18
}