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
This commit is contained in:
badblocks 2023-05-19 09:41:24 -07:00
parent 91898b81fb
commit 1d5c741bd3
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

10
source/data_basic.h Normal file
View file

@ -0,0 +1,10 @@
#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