- 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
10 lines
No EOL
192 B
C
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 |