game2006api/webapp/services/FormulaService.php
2022-05-25 15:27:18 +08:00

48 lines
790 B
PHP

<?php
namespace services;
class FormulaService extends BaseService {
public static function getHeroPvpDailyCegUpLimit($heroDb)
{
return 0;
}
public static function getHeroPveDailyCegUpLimit($heroDb)
{
return 0;
}
public static function calcHeroPvpCeg($heroDb)
{
return 0;
}
public static function calcHeroPveCeg($heroDb)
{
return 0;
}
public static function getWeaponPvpDailyCegUpLimit($weaponDb)
{
return 0;
}
public static function getWeaponPveDailyCegUpLimit($weaponDb)
{
return 0;
}
public static function calcWeaponPvpCeg($weaponDb)
{
return 0;
}
public static function calcWeaponPveCeg($weaponDb)
{
return 0;
}
}