Passed
Push — master ( 2f29cd...4bc53c )
by Yohann
01:12
created

main.Game.pause_screen()   B

Complexity

Conditions 5

Size

Total Lines 39
Code Lines 31

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 31
nop 1
dl 0
loc 39
rs 8.6693
c 0
b 0
f 0
1
from src.game import Game
2
3
__release__ = "04/05/2020"
4
__version__ = 2.0
5
6
7
def main():
8
    game = Game()
9
    game.main()
10
11
12
if __name__ == '__main__':
13
    main()
14