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.
27 lines
667 B
27 lines
667 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Sog;
|
|
|
|
namespace Game
|
|
{
|
|
public class BattleServerVersionData : IServerDataObj
|
|
{
|
|
public Dictionary<uint, int> m_versionMap;
|
|
public Dictionary<int, List<uint>> m_appIdList;
|
|
|
|
public BattleServerVersionData()
|
|
{
|
|
m_versionMap = new Dictionary<uint, int>(); //appid-version
|
|
m_appIdList = new Dictionary<int, List<uint>>(); //version-appidList
|
|
}
|
|
|
|
public override int GetDataType()
|
|
{
|
|
return GameDataObjType.battleServerVersionData;
|
|
}
|
|
|
|
}
|
|
}
|
|
|