fallout2-ce/src/pipboy.h

22 lines
373 B
C
Raw Normal View History

2022-05-19 11:51:26 +03:00
#ifndef PIPBOY_H
#define PIPBOY_H
#include "db.h"
2022-09-23 15:43:44 +03:00
namespace fallout {
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);
2022-09-23 15:43:44 +03:00
} // namespace fallout
2022-05-19 11:51:26 +03:00
#endif /* PIPBOY_H */