Beispiel #1
0
            public MinMaxTable GetDefaultMinMaxTable()
            {
                MinMaxTable mmt = null;

                if (DefaultMinMaxOffset != 0)
                {
                    mmt = new MinMaxTable((ushort)(m_offsetBaseScriptTable + DefaultMinMaxOffset), m_bufTable);
                }

                return(mmt);
            }
Beispiel #2
0
            public MinMaxTable GetMinMaxTable(BaseLangSysRecord blsr)
            {
                MinMaxTable mmt = null;

                if (blsr != null)
                {
                    ushort offset = (ushort)(m_offsetBaseScriptTable + blsr.MinMaxOffset);
                    mmt = new MinMaxTable(offset, m_bufTable);
                }

                return(mmt);
            }
Beispiel #3
0
 public MinMaxTable GetMinMaxTable()
 {
     MinMaxTable mmt = new MinMaxTable(MinMaxOffset, m_bufTable);
     return mmt;
 }
Beispiel #4
0
            public MinMaxTable GetMinMaxTable(BaseLangSysRecord blsr)
            {
                MinMaxTable mmt = null;

                if (blsr != null)
                {
                    ushort offset = (ushort)(m_offsetBaseScriptTable + blsr.MinMaxOffset);
                    mmt = new MinMaxTable(offset, m_bufTable);
                }

                return mmt;
            }
Beispiel #5
0
            public MinMaxTable GetDefaultMinMaxTable()
            {
                MinMaxTable mmt = null;
                
                if (DefaultMinMaxOffset != 0)
                {
                    mmt = new MinMaxTable((ushort)(m_offsetBaseScriptTable + DefaultMinMaxOffset), m_bufTable);
                }

                return mmt;
            }
Beispiel #6
0
            public MinMaxTable GetMinMaxTable()
            {
                MinMaxTable mmt = new MinMaxTable(MinMaxOffset, m_bufTable);

                return(mmt);
            }