fallout2-ce/src/pipboy.h

18 lines
328 B
C
Raw Normal View History

2022-05-19 11:51:26 +03:00
#ifndef PIPBOY_H
#define PIPBOY_H
#include "db.h"
2022-08-07 19:03:43 +03:00
typedef enum PipboyOpenIntent {
PIPBOY_OPEN_INTENT_UNSPECIFIED = 0,
PIPBOY_OPEN_INTENT_REST = 1,
} PipboyOpenIntent;
int pipboyOpen(int intent);
2022-05-19 11:51:26 +03:00
void pipboyInit();
void pipboyReset();
int pipboySave(File* stream);
int pipboyLoad(File* stream);
#endif /* PIPBOY_H */