CTT/Server/Model/Game/Entity/UI/StoreComponent.cs

13 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class StoreComponent:Entity
{
public static StoreComponent Instance;
public Dictionary<long, Store> StoreDic = new Dictionary<long, Store>();
}
}