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> | |
#include <stdint.h> | |
#define min(a, b) (a) < (b) ? (a) : (b) | |
#define max(a, b) (a) > (b) ? (a) : (b) | |
static void | |
GridFromHeightMap(Vector3 *grid_positions, // output grid | |
int32_t grid_width, // point count x axis |
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
// Kryszard's Loot Filter ver 2.1 | |
// | |
// twitch.tv/kryszard | |
// | |
// For Casual and EndGame Players | |
//Gold | |
ItemDisplay[GOLD<100 CLVL<60]: | |
ItemDisplay[GOLD<1000 (CLVL>19 AND CLVL<80)]: | |
ItemDisplay[GOLD<5000 CLVL>79]: |
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 <stdlib.h> | |
#include <assert.h> | |
#include <stdint.h> | |
#include <intrin.h> | |
#include <emmintrin.h> | |
#include <immintrin.h> | |
#include <windows.h> | |
#define JM_MATH_IMPLEMENTATION | |
#define JM_MATH_USE_STDLIB |
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 <stdlib.h> | |
#include <stdint.h> | |
#include <assert.h> | |
#define JM_MATH_IMPLEMENTATION | |
#define JM_MATH_USE_STDLIB | |
#include "jm_math.h" | |
#define STB_IMAGE_IMPLEMENTATION | |
#define STB_IMAGE_WRITE_IMPLEMENTATION |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdint.h> | |
#include <assert.h> | |
#include <conio.h> | |
#include <time.h> | |
#define array_count(arr) (sizeof(arr) / sizeof((arr)[0])) |