123456789101112131415161718192021222324 |
- using CommonLang;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XmdsServerEdgeJS.Zone;
- // 场景缓存信息
- namespace CommonAI.ZoneServer.JSGModule
- {
- public class ZoneCache
- {
- public static HashMap<int, List<XmdsZoneNode>> mCacheZone = new HashMap<int, List<XmdsZoneNode>>();
- public static void cacheScene(int sceneID)
- {
- //XmdsZoneNode node = new XmdsZoneNode(this, instanceId, gameServerId);
- //node.Node.Callback = IceManager.instance().getCallback(gameServerId);
- //node.Start(sceneID, data, null);
- }
- }
- }
|