Example #1
0
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // ACData()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public ACData(EACDataType eDataType, bool bAllowReload = false)
     : base()
 {
     m_strDataName  = eDataType.ToString();
     m_bAllowReload = bAllowReload;
     IsDataSync     = false;
 }
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // MapCommonData()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public MapCommonData(EACDataType eDataType)
     : base(eDataType)
 {
 }
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // RankData()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public RankData(EACDataType eDataType)
     : base(eDataType)
 {
 }
Example #4
0
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // ACDataSync()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public ACDataSync(EACDataType eDataType, bool bAllowReload = false)
     : base(eDataType, bAllowReload)
 {
 }
Example #5
0
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // GradeData()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public GradeData(EACDataType eDataType)
     : base(eDataType)
 {
 }
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // POWER_LEVEL()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public POWER_LEVEL(EACDataType eDataType, bool bAllowReload = false)
     : base(eDataType, bAllowReload)
 {
     m_dicKeyMapping = new Dictionary <int, int>();
     m_dicLevelMax   = new Dictionary <int, int>();
 }
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 // MapObjectPropertyData()
 //--------------------------------------------------------------------------------------------------
 //	Desc.
 //
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public MapObjectPropertyData(EACDataType eDataType)
     : base(eDataType)
 {
 }