Pricing makes no sense
Why do you have to pay just to play rock paper scissors
Reasons why u should not get this app
Not even that good
Waste of time
Pay 2 Use
Sehr gutes Spiel
Jungs macht weiter so ❤️❤️
Fun
😁
Three games of it then sit makes you pay
Great concept but horrible gameplay
Non funziona
Response from developer
Ciao! Grazie per la tua recensione e mi dispiace per questo problema. Apprezzerei molto se inviassi il video dell'app che non funziona a monochromestudios@icloud.com, così potrei vedere esattamente cosa non va. Igor
Could be satisfying
box = Circle(600,300,10)
run = True
start = False
clock = pygame.time.Clock()
while run:
clock.tick(120)
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
keys = pygame.key.get_pressed()
if keys[pygame.K_SPACE]:
start = True
bounds = pygame.Rect(450, 200, 300, 200)
if start:
box.y -= box.vel_y
box.x += box.vel_x
if box.x - box.radius < bounds.left or box.x + box.radius > bounds.right:
box.vel_x *= -1
if box.y - box.radius < bounds.top or box.y + box.radius > bounds.bottom:
box.vel_y *= -1
window.fill((0,0,0))
pygame.draw.rect(window, (255, 0, 0), bounds, 1)
pygame.draw.circle(window, (44,176,55), (box.x, box.y), box.radius)
pygame.display.update()
