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.
 
 
 
 
 
 

26 lines
695 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Sog;
namespace Game
{
public class GameAbyssDataCache : IServerDataObj
{
public int getAbyssDBRecording = 0;
public StructMemoryCache<BattleReplayRecordingOneCacheStruct> m_cacheStructBattleReplayRecording;// = new StructMemoryCache<MainlandRecordingOneCacheStruct>(2000);
public GameAbyssDataCache()
{
m_cacheStructBattleReplayRecording = new StructMemoryCache<BattleReplayRecordingOneCacheStruct>(2000);
}
public override int GetDataType()
{
return GameDataObjType.AbyssData;
}
}
}