invertika_game.Game.AttributeManager.getAttributeScope C# (CSharp) Method

getAttributeScope() public method

public getAttributeScope ( ScopeType type ) : List>.Dictionary
type ScopeType
return List>.Dictionary
        public Dictionary<int, List<AttributeInfoType>> getAttributeScope(ScopeType type)
        {
            Dictionary<int, List<AttributeInfoType>> ret=new Dictionary<int, List<AttributeInfoType>>();

            if(mAttributeScopes.ContainsKey((int)type))
            {
                ret.Add((int)type, mAttributeScopes[(int)type]);
            }
            return ret;
        }