This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "SDL3/SDL_error.h" | |
| #include "SDL3/SDL_render.h" | |
| #include <SDL3/SDL.h> | |
| #include <SDL3_ttf/SDL_ttf.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| int main(int argc, char **argv) { | |
| SDL_Init(SDL_INIT_VIDEO); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <raylib.h> | |
| #include <raymath.h> | |
| Vector2 VEC2(float x, float y) { | |
| Vector2 result = {x, y}; | |
| return result; | |
| } | |
| int main(int argc, char **argv) { | |
| SetConfigFlags(FLAG_WINDOW_RESIZABLE | FLAG_WINDOW_HIGHDPI); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (load-theme 'deeper-blue) | |
| (require 'package) | |
| (add-to-list 'package-archives | |
| '("melpa-stable" . "https://stable.melpa.org/packages/") t) | |
| (package-initialize) | |
| (setq package-selected-packages | |
| '(use-package)) |