You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
363 B
17 lines
363 B
using System;
|
|
using System.Collections.Generic;
|
|
using Sog;
|
|
|
|
namespace World
|
|
{
|
|
/// <summary>
|
|
/// 登录加载的数据 可以不存库
|
|
/// </summary>
|
|
public class WorldUnionChangeCacheData : IServerDataObj
|
|
{
|
|
public override int GetDataType()
|
|
{
|
|
return WorldDataObjType.WorldUnionChangeCacheData;
|
|
}
|
|
}
|
|
}
|
|
|