(SourceGame game)
| 76 | } |
| 77 | |
| 78 | public static boolean isGameInstalled(SourceGame game) { |
| 79 | File hammer = new File(getHammerPath(game)); |
| 80 | return hammer.exists(); |
| 81 | } |
| 82 | |
| 83 | public static String getGamePathString(SourceGame game) { |
| 84 | if (game == null) { |
nothing calls this directly
no test coverage detected