๐Ÿ“š ๋‚ด์ผ๋ฐฐ์›€์บ ํ”„ 0์ฃผ์ฐจ ๊ณผ์ œ #์˜ค๋ฝ์‹ค ๊ฒŒ์ž„ ๋งŒ๋“ค๊ธฐ

๋ฌธ๋ช…์ฃผยท2022๋…„ 4์›” 13์ผ
0
post-thumbnail

ํŒŒ์ด์ฌ์—์„œ ์‰ฝ๊ฒŒ ๊ฒŒ์ž„์„ ๋งŒ๋“ค ์ˆ˜ ์žˆ๋Š” ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ์ธ pygame์„ ์ด์šฉํ•ด ์˜ค๋ฝ์‹ค ํŒก๊ฒŒ์ž„์„ ๋งŒ๋“ค์—ˆ๋‹ค.
๊ฐ€์žฅ ๋จผ์ € ์•„๋ž˜์™€ ๊ฐ™์ด pygame์„ ์ž„ํฌํŠธํ•ด์ฃผ๊ณ  ๊ธฐ๋ณธ ์ดˆ๊ธฐํ™”๋ฅผ ์‹œ์ผœ์ค€๋‹ค

import pygame #์ž„ํฌํŠธ์‹คํ–‰
pygame.init() 

๊ทธ ๋‹ค์Œ ํ™”๋ฉดํฌ๊ธฐ์„ค์ •์ด๋‚˜ ํ™”๋ฉดํƒ€์ดํ‹€ ์„ค์ • ๋“ฑ ๊ธฐ๋ณธํ‹€์„ ๋งŒ๋“ ๋‹ค.

#ํ™”๋ฉด ํฌ๊ธฐ ์„ค์ •
screen_width = 640 #๊ฐ€๋กœํฌ๊ธฐ
screen_height = 480 #์„ธ๋กœํฌ๊ธฐ
screen = pygame.display.set_mode((screen_width, screen_height))

#ํ™”๋ฉด ํƒ€์ดํ‹€ ์„ค์ •
pygame.display.set_caption('Nado Pang') #๊ฒŒ์ž„ ์ด๋ฆ„

# FPS
clock = pygame.time.Clock()

๊ทธ ๋‹ค์Œ ์ด๋ฏธ์ง€ ์ €์žฅ์„ ์œ„ํ•ด current_path์— ์ €์žฅํ•˜๊ณ  os๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๋ฅผ ์ž„ํฌํŠธํ•ด์ค€๋‹ค

current_path = os.path.dirname(__file__) # ํ˜„์žฌ ํŒŒ์ผ์˜ ์œ„์น˜ ๋ฐ˜ํ™˜
image_path = os.path.join(current_path, 'images') # images ํด๋” ์œ„์น˜ ๋ฐ˜ํ™˜

๊ฒŒ์ž„ํ•˜๊ธฐ์œ„ํ•ด ํ•„์š”ํ•œ ๋ฐฐ๊ฒฝ, ์Šคํ…Œ์ด์ง€, ๋ฌด๊ธฐ, ๊ณต ๋ฐ ์บ๋ฆญํ„ฐ๋ฅผ ๋งŒ๋“ค์–ด ์ค€๋‹ค.

# ๋ฐฐ๊ฒฝ ๋งŒ๋“ค๊ธฐ
background = pygame.image.load(os.path.join(image_path, 'background.png'))

# ์Šคํ…Œ์ด์ง€ ๋งŒ๋“ค๊ธฐ
stage = pygame.image.load(os.path.join(image_path, 'stage.png'))
stage_size = stage.get_rect().size
stage_height = stage_size[1] # ์Šคํ…Œ์ด์ง€์˜ ๋†’์ด ์œ„์— ์บ๋ฆญํ„ฐ๋ฅผ ๋‘๊ธฐ ์œ„ํ•ด ์‚ฌ์šฉ

# ๋ฌด๊ธฐ ๋งŒ๋“ค๊ธฐ
weapon = pygame.image.load(os.path.join(image_path, 'weapon.png'))
weapon_size = weapon.get_rect().size
weapon_width = weapon_size[0]

# ๊ณต ๋งŒ๋“ค๊ธฐ (4๊ฐœ ํฌ๊ธฐ์— ๋Œ€ํ•ด ๋”ฐ๋กœ ์ฒ˜๋ฆฌ)
ball_images = [
    pygame.image.load(os.path.join(image_path, 'balloon1.png')),
    pygame.image.load(os.path.join(image_path, 'balloon2.png')),
    pygame.image.load(os.path.join(image_path, 'balloon3.png')),
    pygame.image.load(os.path.join(image_path, 'balloon4.png'))]

# ์บ๋ฆญํ„ฐ ๋งŒ๋“ค๊ธฐ
character = pygame.image.load(os.path.join(image_path, 'character.png'))
character_size = character.get_rect().size
character_width = character_size[0]
character_height = character_size[1]
character_x_pos = (screen_width / 2) - (character_width / 2)
character_y_pos = screen_height - character_height - stage_height

๊ทธ ๋‹ค์Œ ์บ๋ฆญํ„ฐ,๋ฌด๊ธฐ์™€ ๊ณต์˜ ์ด๋™๋ฐฉํ–ฅ๊ณผ ์†๋„ ๋“ฑ ๊ธฐ๋ณธ ์˜ต์…˜์„ ์„ค์ •ํ•œ๋‹ค.

# ์บ๋ฆญํ„ฐ ์ด๋™ ๋ฐฉํ–ฅ
character_to_x = 0

# ์บ๋ฆญํ„ฐ ์ด๋™ ์†๋„
character_speed = 5

# ๋ฌด๊ธฐ๋Š” ํ•œ ๋ฒˆ์— ์—ฌ๋Ÿฌ๋ฐœ ๋ฐœ์‚ฌ๊ฐ€๋Šฅ
weapons =[]

# ๋ฌด๊ธฐ ์ด๋™ ์†๋„
weapon_speed = 10

# ๊ณต ํฌ๊ธฐ์— ๋”ฐ๋ฅธ ์ตœ์ดˆ ์Šคํ”ผ๋“œ
ball_speed_y = [-18, -15, -12, -9] # index 0, 1, 2, 3 ์— ํ•ด๋‹นํ•˜๋Š” ๊ฐ’

์—ฌ๊ธฐ์„œ ์ค‘์š”ํ•œ ์ ์€ ๊ฐ ๊ณต๋“ค์˜ ์œ„ ์•„๋ž˜ ์œ„์น˜์— ๋”ฐ๋ผ ์†๋„๊ฐ€ ๋‹ค๋ฅด๊ธฐ๋•Œ๋ฌธ์— balls๋ผ๋Š” ๋ณ€์ˆ˜๋กœ ๋ฆฌ์ŠคํŠธ๋ฅผ ์„ค์ •ํ•˜๊ณ  ์ตœ์ดˆ ๋ฐœ์ƒํ•˜๊ฒŒ๋˜๋Š” ๊ณต์„ ์„ค์ •ํ•œ๋‹ค.

# ๊ณต๋“ค
balls =[]

# ์ตœ์ดˆ ๋ฐœ์ƒํ•˜๋Š” ํฐ ๊ณต ์ถ”๊ฐ€ 
balls.append({
    'pos_x': 50, # ๊ณต์˜ x ์ขŒํ‘œ
    'pos_y': 50, # ๊ณต์˜ y ์ขŒํ‘œ
    'img_idx': 0, # ๊ณต์˜ ์ด๋ฏธ์ง€ ์ธ๋ฑ์Šค
    'to_x': 3, # x์ถ• ์ด๋™๋ฐฉํ–ฅ, -3์ด๋ฉด ์™ผ์ชฝ, 3์ด๋ฉด ์˜ค๋ฅธ์ชฝ์œผ๋กœ
    'to_y':-6, # y์ถ• ์ด๋™๋ฐฉํ–ฅ
    'init_spd_y': ball_speed_y[0]}) # y ์ตœ์ดˆ ์†๋„

๊ทธ๋ฆฌ๊ณ  ๊ณต์ด ๋ฌด๊ธฐ์— ๋งž์•˜์„ ๋•Œ ์‚ฌ๋ผ์งˆ ์ˆ˜ ์žˆ๋„๋ก ๋ณ€์ˆ˜๋ฅผ ๋งŒ๋“ค์–ด๋‘”๋‹ค.

# ์‚ฌ๋ผ์งˆ ๋ฌด๊ธฐ, ๊ณต ์ •๋ณด ์ €์žฅ ๋ณ€์ˆ˜ 
weapon_to_remove = -1
ball_to_remove = -1

๊ฒŒ์ž„ ํฐํŠธ, ํƒ€์ž„์„ค์ • ์ €์žฅํ•˜๊ธฐ

# Font ์ •์˜
game_font = pygame.font.Font(None, 40)
total_time = 100
start_ticks = pygame.time.get_ticks() # ์‹œ์ž‘ ์‹œ๊ฐ„ ์ •์˜

๊ฒŒ์ž„ ๊ฒฐ๊ณผ๋ฅผ ๋‚˜ํƒ€๋‚ด๊ธฐ์œ„ํ•ด ๋ณ€์ˆ˜ ์„ค์ •ํ•˜๊ธฐ

game_result = 'Game Over'

#running์ด ์ฐธ์ผ๊ฒฝ์šฐ ์ฆ‰ ๊ฒŒ์ž„ ์ง„ํ–‰์ค‘์ด๋ฉด while ์‹คํ–‰
running = True 
while running:
    dt = clock.tick(30)

ํ‚ค๋ณด๋“œ๋ฅผ ๋ˆŒ๋ €์„๋•Œ ๊ฐ’ ์„ค์ •ํ•˜๊ธฐ

# 2. ์ด๋ฒคํŠธ ์ฒ˜๋ฆฌ (ํ‚ค๋ณด๋“œ, ๋งˆ์šฐ์Šค ๋“ฑ)
    for event in pygame.event.get(): 
        if event.type == pygame.QUIT: 
            running = False 

        if event.type == pygame.KEYDOWN:
            if event.key == pygame.K_LEFT: # ์บ๋ฆญํ„ฐ๋ฅผ ์™ผ์ชฝ์œผ๋กœ
                character_to_x -= character_speed
            elif event.key == pygame.K_RIGHT: # ์บ๋ฆญํ„ฐ๋ฅผ ์˜ค๋ฅธ์ชฝ์œผ๋กœ
                character_to_x += character_speed
            elif event.key == pygame.K_SPACE: # ๋ฌด๊ธฐ ๋ฐœ์‚ฌ
                weapon_x_pos = character_x_pos + (character_width / 2) - (weapon_width / 2)
                weapon_y_pos = character_y_pos
                weapons.append([weapon_x_pos, weapon_y_pos])

        if event.type == pygame.KEYUP:
            if event.key == pygame.K_LEFT or event.key == pygame.K_RIGHT:
                character_to_x = 0

๊ฒŒ์ž„ ์บ๋ฆญํ„ฐ ์œ„์น˜,๋ฌด๊ธฐ ์œ„์น˜ ๋ฐ ๊ณต ์œ„์น˜ ์„ค์ •ํ•˜๊ธฐ

# 3. ๊ฒŒ์ž„ ์บ๋ฆญํ„ฐ ์œ„์น˜ ์ •์˜
    character_x_pos += character_to_x

    if character_x_pos < 0:
        character_x_pos = 0
    elif character_x_pos > screen_width - character_width:
        character_x_pos = screen_width - character_width

    # ๋ฌด๊ธฐ ์œ„์น˜ ์กฐ์ •
    # 100, 200 -> 180, 160 ,140, ...
    # 500, 200 -> 180, 160 ,140, ...
    weapons = [ [w[0], w[1] - weapon_speed] for w in weapons] # ๋ฌด๊ธฐ ์œ„์น˜๋ฅผ ์œ„๋กœ

    # ์ฒœ์žฅ์— ๋‹ฟ์€ ๋ฌด๊ธฐ ์—†์• ๊ธฐ 
    weapons = [ [w[0], w[1]] for w in weapons if w[1] > 0] 

    # ๊ณต ์œ„์น˜ ์ •์˜
    for ball_idx, ball_val in enumerate(balls):
        ball_pos_x = ball_val['pos_x']
        ball_pos_y = ball_val['pos_y']
        ball_img_idx = ball_val['img_idx']

        ball_size = ball_images[ball_img_idx].get_rect().size
        ball_width = ball_size[0]
        ball_height = ball_size[1]

        # ๊ฐ€๋กœ๋ฒฝ์— ๋‹ฟ์•˜์„ ๋•Œ ๊ณต ์ด๋™ ์œ„์น˜ ๋ณ€๊ฒฝ ( ํŠ•๊ฒจ ๋‚˜์˜ค๋Š” ํšจ๊ณผ )
        if ball_pos_x < 0 or ball_pos_x > screen_width - ball_width:
            ball_val['to_x'] = ball_val['to_x'] * -1

        # ์„ธ๋กœ ์œ„์น˜
        # ์Šคํ…Œ์ด์ง€์— ํŠ•๊ฒจ์„œ ์˜ฌ๋ผ๊ฐ€๋Š” ์ฒ˜๋ฆฌ
        if ball_pos_y >= screen_height - stage_height - ball_height:
            ball_val['to_y'] = ball_val['init_spd_y']
        else:  # ๊ทธ ์™ธ์˜ ๋ชจ๋“  ๊ฒฝ์šฐ์—๋Š” ์†๋„๋ฅผ ์ฆ๊ฐ€ 
            ball_val['to_y'] += 0.5

        ball_val['pos_x'] += ball_val['to_x']
        ball_val['pos_y'] += ball_val['to_y']

๊ณต๊ณผ ์ถฉ๋Œํ–ˆ์„ ๋•Œ ์ฒ˜๋ฆฌ๊ฐ’์„ ์„ค์ •ํ•˜๊ธฐ

# 4. ์ถฉ๋Œ ์ฒ˜๋ฆฌ

    # ์บ๋ฆญํ„ฐ rect ์ •๋ณด ์—…๋ฐ์ดํŠธ 
    character_rect = character.get_rect()
    character_rect.left = character_x_pos
    character_rect.top = character_y_pos

    for ball_idx, ball_val in enumerate(balls):
        ball_pos_x = ball_val['pos_x']
        ball_pos_y = ball_val['pos_y']
        ball_img_idx = ball_val['img_idx']

        # ๊ณต rect ์ •๋ณด ์—…๋ฐ์ดํŠธ
        ball_rect = ball_images[ball_img_idx].get_rect()
        ball_rect.left = ball_pos_x
        ball_rect.top = ball_pos_y

        # ๊ณต๊ณผ ์บ๋ฆญํ„ฐ ์ถฉ๋Œ ์ฒดํฌ
        if character_rect.colliderect(ball_rect):
            running = False
            break

        # ๊ณต๊ณผ ๋ฌด๊ธฐ๋“ค ์ถฉ๋Œ ์ฒ˜๋ฆฌ
        for weapon_idx, weapon_val in enumerate(weapons):
            weapon_pos_x = weapon_val[0]
            weapon_pos_y = weapon_val[1]

            # ๋ฌด๊ธฐ rect ์ •๋ณด ์—…๋ฐ์ดํŠธ
            weapon_rect = weapon.get_rect()
            weapon_rect.left = weapon_pos_x
            weapon_rect.top = weapon_pos_y
           
            # ์ถฉ๋Œ ์ฒดํฌ
            if weapon_rect.colliderect(ball_rect):
                weapon_to_remove = weapon_idx # ํ•ด๋‹น ๋ฌด๊ธฐ ์—†์• ๊ธฐ ์œ„ํ•œ ๊ฐ’ ์„ค์ •
                ball_to_remove = ball_idx # ํ•ด๋‹น ๊ณต ์—†์• ๊ธฐ ์œ„ํ•œ ๊ฐ’ ์„ค์ •
                
                # ๊ฐ€์žฅ ์ž‘์€ ํฌ๊ธฐ์˜ ๊ณต์ด ์•„๋‹ˆ๋ผ๋ฉด ๋‹ค์Œ ๋‹จ๊ณ„์˜ ๊ณต์œผ๋กœ ๋‚˜๋ˆ ์ฃผ๊ธฐ
                if ball_img_idx < 3:
                    # ํ˜„์žฌ ๊ณต ํฌ๊ธฐ ์ •๋ณด๋ฅผ ๊ฐ€์ง€๊ณ  ์˜ด
                    ball_width = ball_rect.size[0]
                    ball_height = ball_rect.size[1]

                    # ๋‚˜๋ˆ ์ง„ ๊ณต ์ •๋ณด
                    small_ball_rect = ball_images[ball_img_idx + 1].get_rect()
                    small_ball_width = small_ball_rect.size[0]
                    small_ball_height = small_ball_rect.size[1]

                    # ์™ผ์ชฝ์œผ๋กœ ํŠ•๊ฒจ๋‚˜๊ฐ€๋Š” ์ž‘์€ ๊ณต
                    balls.append({
                        'pos_x': ball_pos_x + (ball_width / 2) - (small_ball_width / 2), # ๊ณต์˜ x ์ขŒํ‘œ
                        'pos_y': ball_pos_y + (ball_height / 2) - (small_ball_height / 2), # ๊ณต์˜ y ์ขŒํ‘œ
                        'img_idx': ball_img_idx + 1, # ๊ณต์˜ ์ด๋ฏธ์ง€ ์ธ๋ฑ์Šค
                        'to_x': -3, # x์ถ• ์ด๋™๋ฐฉํ–ฅ, -3์ด๋ฉด ์™ผ์ชฝ, 3์ด๋ฉด ์˜ค๋ฅธ์ชฝ์œผ๋กœ
                        'to_y': -6, # y์ถ• ์ด๋™๋ฐฉํ–ฅ
                        'init_spd_y': ball_speed_y[ball_img_idx + 1]}) # y ์ตœ์ดˆ ์†๋„
                    # ์˜ค๋ฅธ์ชฝ์œผ๋กœ ํŠ•๊ฒจ๋‚˜๊ฐ€๋Š” ์ž‘์€ ๊ณต
                    balls.append({
                        'pos_x': ball_pos_x + (ball_width / 2) - (small_ball_width / 2), # ๊ณต์˜ x ์ขŒํ‘œ
                        'pos_y': ball_pos_y + (ball_height / 2) - (small_ball_height / 2), # ๊ณต์˜ y ์ขŒํ‘œ
                        'img_idx': ball_img_idx + 1, # ๊ณต์˜ ์ด๋ฏธ์ง€ ์ธ๋ฑ์Šค
                        'to_x': 3, # x์ถ• ์ด๋™๋ฐฉํ–ฅ, -3์ด๋ฉด ์™ผ์ชฝ, 3์ด๋ฉด ์˜ค๋ฅธ์ชฝ์œผ๋กœ
                        'to_y': -6, # y์ถ• ์ด๋™๋ฐฉํ–ฅ
                        'init_spd_y': ball_speed_y[ball_img_idx + 1]}) # y ์ตœ์ดˆ ์†๋„
                break
        else: # ๊ณ„์† ๊ฒŒ์ž„์„ ์ง„ํ–‰
            continue # ์•ˆ์ชฝ for๋ฌธ ์กฐ๊ฑด ์ด ๋งž์ง€ ์•Š์œผ๋ฉด continue, ๋ฐ”๊นฅ for ๋ฌธ ๊ณ„์† ์ˆ˜ํ–‰
        break # ์•ˆ์ชฝ for ๋ฌธ์—์„œ break๋ฅผ ๋งŒ๋‚˜๋ฉด ์—ฌ๊ธฐ๋กœ ์ง„์ž… ๊ฐ€๋Šฅ. 2์ค‘ for ๋ฌธ์„ ํ•œ๋ฒˆ์— ํƒˆ์ถœ

    # for ๋ฐ”๊นฅ์กฐ๊ฑด:
    #     ๋ฐ”๊นฅ๋™์ž‘
    #     for ์•ˆ์ชฝ์กฐ๊ฑด:
    #         ์•ˆ์ชฝ๋™์ž‘
    #         if ์ถฉ๋Œํ•˜๋ฉด:
    #             break  
    #     else:
    #         continue
    #     break
        
    # ์ถฉ๋Œ๋œ ๊ณต or ๋ฌด๊ธฐ ์—†์• ๊ธฐ
    if ball_to_remove > -1:
        del balls[ball_to_remove]
        ball_to_remove = -1
    
    if weapon_to_remove > -1:
        del weapons[weapon_to_remove]
        weapon_to_remove = -1

    # ๋ชจ๋“  ๊ณต์„ ์—†์•ค ๊ฒฝ์šฐ ๊ฒŒ์ž„ ์ข…๋ฃŒ (์„ฑ๊ณต)
    if len(balls) ==0:
        game_result = 'Mission Complate'
        running = False

ํ™”๋ฉด์— ๋ฌด๊ธฐ์™€ ๋ฐ”๋‹ฅ, ์บ๋ฆญํ„ฐ ๊ทธ๋ ค์ฃผ๊ณ  ๊ฒฝ๊ณผ์‹œ๊ฐ„์„ ๊ณ„์‚ฐํ•ด ์‹œ๊ฐ„์ด ์ดˆ๊ณผํ–ˆ๋‹ค๋ฉด ๊ฒŒ์ž„๊ฒฐ๊ณผ ๊ฐ’์„ Time Over๋กœ ๋ฐ”๊ฟ” ๊ฒŒ์ž„์„ ๋๋‚ด๊ณ 

# 5. ํ™”๋ฉด์— ๊ทธ๋ฆฌ๊ธฐ 
    screen.blit(background, (0,0))

    for weapon_x_pos, weapon_y_pos in weapons:
        screen.blit(weapon, (weapon_x_pos, weapon_y_pos))

    for idx, val in enumerate(balls):
        ball_pos_x = val['pos_x']
        ball_pos_y = val['pos_y']
        ball_img_idx = val['img_idx']
        screen.blit(ball_images[ball_img_idx], (ball_pos_x, ball_pos_y))

    screen.blit(stage, (0, screen_height - stage_height))
    screen.blit(character, (character_x_pos, character_y_pos))

    # ๊ฒฝ๊ณผ ์‹œ๊ฐ„ ๊ณ„์‚ฐ
    elapsed_time = (pygame.time.get_ticks()- start_ticks) / 1000 # ms -> s
    timer = game_font.render('Time : {}'.format(int(total_time - elapsed_time)), True, (255, 255, 255))
    screen.blit(timer, (10, 10))

    # ์‹œ๊ฐ„ ์ดˆ๊ณผํ–ˆ๋‹ค๋ฉด
    if total_time - elapsed_time <= 0:
        game_result = 'Time Over'
        running = False

    pygame.display.update()

์•„๋ž˜์™€ ๊ฐ™์ด ๊ฒŒ์ž„๊ฒฐ๊ณผ๋ฅผ ๋‹ด๋Š” ๋ณ€์ˆ˜๋ฅผ ๋งŒ๋“ค์–ด ๊ฒŒ์ž„์˜ค๋ฒ„๋ฉ”์‹œ์ง€๋ฅผ ๋„์›Œ์ค€๋‹ค.

# ๊ฒŒ์ž„ ์˜ค๋ฒ„ ๋ฉ”์‹œ์ง€
msg = game_font.render(game_result, True, (255, 255, 0)) # ๋…ธ๋ž€์ƒ‰
msg_rect = msg.get_rect(center=(int(screen_width / 2), int(screen_height / 2)))
screen.blit(msg, msg_rect)
pygame.display.update()
  • ๋Š๋‚€์ 

    ์ด๋ฒˆ ๊ฐ•์˜ ๋‚ด์šฉ๋„ ๊ณ„์‚ฐ๊ธฐ ๋งŒ๋“ค๊ธฐ์™€ ๋™์ผํ•˜๊ฒŒ ์ฒ˜์Œ ์ ‘ํ•˜๋Š” ๋‚ด์šฉ์ด๋‹ค๋ณด๋‹ˆ ์ดํ•ดํ•˜๊ธฐ๊ฐ€ ๋„ˆ๋ฌด ์–ด๋ ค์› ๋‹ค.. ๊ฒŒ์ž„ ํ•˜๋‚˜๋ฅผ ๋งŒ๋“ค๊ธฐ ์œ„ํ•ด ๊ตฌํ˜„ํ•ด์•ผํ•  ๊ธฐ๋Šฅ๋„ ๋งŽ๊ณ , ์„ค์ •ํ•  ๊ฐ’๋„ ๋งŽ๋‹ค๋ณด๋‹ˆ ๋‹จ์ˆœํžˆ ์ง€๊ธˆ๊นŒ์ง€ ๋ฐฐ์›Œ์™”๋˜ ์„œ๋ฒ„๋ฅผ ๋งŒ๋“œ๋Š” ์ผ๋ณด๋‹ค ๋” ์–ด๋ ต๊ฒŒ ๋Š๊ปด์กŒ๋‹ค. ๊ทธ๋ž˜๋„ ์ด๋ฒˆ์— ์ฒ˜์Œ์œผ๋กœ ๋‚ด ์†์œผ๋กœ ๊ฒŒ์ž„๋‹ค์šด ๊ฒŒ์ž„์„ ๋งŒ๋“ค์–ด๋ณด๋‹ˆ ๋‚ด์‹ฌ ๋ฟŒ๋“ฏํ•˜๊ธดํ•˜๋‹ค.

profile
ํ•˜๋ฃจ ํ•œ๊ฑธ์Œ์”ฉ ๊พธ์ค€ํžˆ ๋‚˜์•„๊ฐ€๋Š” ๊ฐœ๋ฐœ์ž๐Ÿ™†โ€โ™€๏ธ https://github.com/Moonmooj

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด