monitor.php 383 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Description of Monitor
  4. * 性能监控类
  5. * @author gwang (mail@wanggangzero.cn)
  6. */
  7. class Monitor {
  8. //put your code here
  9. /**
  10. * 提供函数的响应时间
  11. */
  12. public static function SpeedOfResponse() {
  13. }
  14. /**
  15. * 简要反馈游戏中的状态统计值
  16. */
  17. public static function statGameStatus() {
  18. }
  19. }