Ejemplo n.º 1
0
 public CharacterStatsRow GetRow(rowIds rowID)
 {
     CharacterStatsRow ret = null;
     try
     {
         ret = Rows[(int)rowID];
     }
     catch( KeyNotFoundException ex )
     {
         Debug.LogError( rowID + " not found: " + ex.Message );
     }
     return ret;
 }
Ejemplo n.º 2
0
 public IGoogle2uRow GetGenRow(rowIds in_RowID)
 {
     IGoogle2uRow ret = null;
     try
     {
         ret = Rows[(int)in_RowID];
     }
     catch( System.Collections.Generic.KeyNotFoundException ex )
     {
         Debug.LogError( in_RowID + " not found: " + ex.Message );
     }
     return ret;
 }
Ejemplo n.º 3
0
 public CharacterStatsSampleRow GetRow(rowIds rowID)
 {
     CharacterStatsSampleRow ret = null;
     try
     {
         ret = Rows[(int)rowID];
     }
     catch( System.Collections.Generic.KeyNotFoundException ex )
     {
         Debug.LogError( rowID + " not found: " + ex.Message );
     }
     return ret;
 }
Ejemplo n.º 4
0
        public STERNRow GetRow(rowIds in_RowID)
        {
            STERNRow ret = null;

            try
            {
                ret = Rows[(int)in_RowID];
            }
            catch (System.Collections.Generic.KeyNotFoundException ex)
            {
                Debug.LogError(in_RowID + " not found: " + ex.Message);
            }
            return(ret);
        }
Ejemplo n.º 5
0
        public AttacksRow GetRow(rowIds rowID)
        {
            AttacksRow ret = null;

            try
            {
                ret = Rows[(int)rowID];
            }
            catch (KeyNotFoundException ex)
            {
                Debug.LogError(rowID + " not found: " + ex.Message);
            }
            return(ret);
        }
Ejemplo n.º 6
0
        public CharacterStatsSampleRow GetRow(rowIds rowID)
        {
            CharacterStatsSampleRow ret = null;

            try
            {
                ret = Rows[(int)rowID];
            }
            catch (System.Collections.Generic.KeyNotFoundException ex)
            {
                Debug.LogError(rowID + " not found: " + ex.Message);
            }
            return(ret);
        }
Ejemplo n.º 7
0
		public XPDevelopmentModelsRow GetRow(rowIds in_RowID)
		{
			XPDevelopmentModelsRow ret = null;
			try
			{
				ret = Rows[(int)in_RowID];
			}
			catch( System.Collections.Generic.KeyNotFoundException ex )
			{
				Debug.LogError( in_RowID + " not found: " + ex.Message );
			}
			return ret;
		}
Ejemplo n.º 8
0
		public DamageDistrbutionFormulaeRow GetRow(rowIds in_RowID)
		{
			DamageDistrbutionFormulaeRow ret = null;
			try
			{
				ret = Rows[(int)in_RowID];
			}
			catch( System.Collections.Generic.KeyNotFoundException ex )
			{
				Debug.LogError( in_RowID + " not found: " + ex.Message );
			}
			return ret;
		}
Ejemplo n.º 9
0
 public ItemsSampleRow GetRow(rowIds rowID)
 {
     ItemsSampleRow ret = null;
     try
     {
         ret = Rows[(int)rowID];
     }
     catch( KeyNotFoundException ex )
     {
         Debug.LogError( rowID + " not found: " + ex.Message );
     }
     return ret;
 }
Ejemplo n.º 10
0
		public AvailableMecanimTriggersRow GetRow(rowIds in_RowID)
		{
			AvailableMecanimTriggersRow ret = null;
			try
			{
				ret = Rows[(int)in_RowID];
			}
			catch( System.Collections.Generic.KeyNotFoundException ex )
			{
				Debug.LogError( in_RowID + " not found: " + ex.Message );
			}
			return ret;
		}