Added more default things
This commit is contained in:
2
README.md
Normal file
2
README.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Cinecraft
|
||||||
|
Minecraft fork written in C++ with SDL3 and OpenGL to learn 3D Game Development.
|
||||||
@@ -4,6 +4,14 @@
|
|||||||
int main() {
|
int main() {
|
||||||
SDL_Init(SDL_INIT_VIDEO);
|
SDL_Init(SDL_INIT_VIDEO);
|
||||||
|
|
||||||
|
// SETUP 8-bit colors
|
||||||
|
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
|
||||||
|
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
|
||||||
|
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
|
||||||
|
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
|
||||||
|
SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32);
|
||||||
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
||||||
|
|
||||||
SDL_Window* window = SDL_CreateWindow(
|
SDL_Window* window = SDL_CreateWindow(
|
||||||
"Cinecraft",
|
"Cinecraft",
|
||||||
800, 600,
|
800, 600,
|
||||||
|
|||||||
Reference in New Issue
Block a user