14 lines
245 B
C
14 lines
245 B
C
#pragma once
|
|
#include "space.h"
|
|
|
|
/* Open the map window. */
|
|
void map_open(void);
|
|
|
|
/* Misc. */
|
|
void map_clear(void);
|
|
void map_jump(void);
|
|
|
|
/* Manipulate universe stuff. */
|
|
StarSystem** map_getJumpPath(int* njumps, char* sysstart, char* sysend);
|
|
|