Esempio n. 1
0
        public int GetGameResourceInfo(GameResourceKey key)
        {
            int ret;

            gameResourceInfo_.TryGetValue(key, out ret);
            return(ret);
        }
Esempio n. 2
0
 public void SetGameResourceInfo(GameResourceKey key, int value)
 {
     gameResourceInfo_[key] = value;
 }
Esempio n. 3
0
 public bool GetGameResourceInfo(GameResourceKey key, out int value)
 {
     return(gameResourceInfo_.TryGetValue(key, out value));
 }