| 123456789101112131415161718 |
- #if !UNITY_64
- using MongoDB.Driver;
- namespace ET.Server
- {
- /// <summary>
- /// 用来缓存数据
- /// </summary>
- [ChildOf(typeof(DBManagerComponent))]
- public class DBComponent: Entity, IAwake<string, string, int>, IDestroy
- {
- public const int TaskCount = 32;
- public MongoClient mongoClient;
- public IMongoDatabase database;
- }
- }
- #endif
|