fallout2-ce/src/pipboy.h

22 lines
373 B
C
Raw Permalink Normal View History

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