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.
18 lines
363 B
18 lines
363 B
1 month ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Sog;
|
||
|
|
||
|
namespace World
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 登录加载的数据 可以不存库
|
||
|
/// </summary>
|
||
|
public class WorldUnionChangeCacheData : IServerDataObj
|
||
|
{
|
||
|
public override int GetDataType()
|
||
|
{
|
||
|
return WorldDataObjType.WorldUnionChangeCacheData;
|
||
|
}
|
||
|
}
|
||
|
}
|