/**
  * 
  * Enter description here ...
  */
 public static function getBulletsList()
 {
     $pathBullets = GlobalsUniteRev::$pathAssetsBullets;
     $arrDirs = UniteFunctionsRev::getFolderDirs($pathBullets);
     $bullets = array();
     foreach ($arrDirs as $dir) {
         $set = self::getBulletSetFromDir($dir);
         $bullets[$dir] = $set;
     }
     return $bullets;
 }