Example #1
0
 public bool ReadItem(CsvFile tf)
 {
     UserType  = tf.Get <ushort>(_KEY_UserType);
     GunId     = tf.Get <ushort>(_KEY_GunId);
     GunPrefab = tf.Get <string>(_KEY_GunPrefab);
     Icon      = tf.Get <string>(_KEY_Icon);
     return(true);
 }
Example #2
0
 public bool ReadItem(CsvFile tf)
 {
     MapName     = tf.Get <string>(_KEY_MapName);
     MinimapName = tf.Get <string>(_KEY_MinimapName);
     CenterX     = tf.Get <float>(_KEY_CenterX);
     CenterY     = tf.Get <float>(_KEY_CenterY);
     Size        = tf.Get <float>(_KEY_Size);
     return(true);
 }
Example #3
0
 public bool ReadItem(CsvFile tf)
 {
     Desc = tf.Get <string>(_KEY_Desc);
     return(true);
 }