- Emil Persson @Humus
- Matt Pettineo @mynameismjp
This file contains 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
package main | |
import "core:fmt" | |
import "core:math" | |
import "core:math/linalg" | |
import rl "vendor:raylib" | |
main :: proc() { | |
rl.SetConfigFlags({.VSYNC_HINT, .WINDOW_RESIZABLE, .MSAA_4X_HINT}) | |
rl.InitWindow(800, 600, "collision") |
This file contains 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
package win32_winmd | |
import windows "core:sys/windows" | |
import win32 "core:sys/win32" | |
import c "core:c" | |
LARGE_INTEGER :: windows.LARGE_INTEGER; | |
ULARGE_INTEGER :: u64; | |
DWORD :: windows.DWORD; | |
LONG :: windows.LONG; | |
ULONG :: windows.ULONG; |