botw-completer/source/data_basic.h
badbl0cks 1d5c741bd3
Add initial Korok seed location data
- Create data.h/c with first 10 Korok locations
- Each location has hash ID and x,y,z coordinates
- Foundation for complete Korok database
- Test data for pin placement functionality
2023-05-19 09:41:24 -07:00

10 lines
No EOL
192 B
C

#ifndef DATA_H
#define DATA_H
#include "save_basic.h"
#include "map_basic.h"
// Sample Korok seed locations (first 10 for testing)
extern Point KOROKS[];
extern const int KOROK_COUNT;
#endif