Notice
Recent Posts
Recent Comments
Link
목록Grid (1)
빙수달 게임 개발 노트
// Caret.cpp : 애플리케이션에 대한 진입점을 정의합니다.//#include "framework.h"#include "Caret.h"#define MAX_LOADSTRING 100void DrawGrid(HDC hdc, POINT center, int Width, int Height, int Count){ int Row_count = Height / Count; int Col_count = Width / Count; POINT startPoint = { center.x - Width / 2, center.y - Height / 2 }; POINT endPoint{ center.x + Width / 2, center.y + Height / 2 }; // 행 출력 ..
Programming/WindowAPI
2025. 1. 8. 23:57