Skip to content

Instantly share code, notes, and snippets.

View bEFU0K's full-sized avatar
😁
I'm programming here for you, friends.

befu0k bEFU0K

😁
I'm programming here for you, friends.
View GitHub Profile
@bEFU0K
bEFU0K / gist:343cad1cdce0e6d83cd92d1c1f50ba21
Created October 7, 2025 14:38
Minecraft 2d python easy version By bEFU0K
import pygame
import random
import numpy as np
class Minecraft2D:
def __init__(self):
pygame.init()
self.width, self.height = 1200, 800
self.screen = pygame.display.set_mode((self.width, self.height))
pygame.display.set_caption("2D Minecraft Clone")
@bEFU0K
bEFU0K / gist:ac2a0679524164ce3141407b01349085
Created October 7, 2025 14:15
Roblox Python By bEFU0K
import pygame
import random
import math
# Инициализация Pygame
pygame.init()
# Настройки экрана
WIDTH, HEIGHT = 800, 600
screen = pygame.display.set_mode((WIDTH, HEIGHT))