2022-05-19 01:51:26 -07:00
|
|
|
#ifndef CHARACTER_EDITOR_H
|
|
|
|
#define CHARACTER_EDITOR_H
|
|
|
|
|
|
|
|
#include "db.h"
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-06-10 14:32:57 -07:00
|
|
|
extern int gCharacterEditorRemainingCharacterPoints;
|
2022-05-19 01:51:26 -07:00
|
|
|
|
2022-06-10 14:32:57 -07:00
|
|
|
int characterEditorShow(bool isCreationMode);
|
|
|
|
void characterEditorInit();
|
2022-05-19 01:51:26 -07:00
|
|
|
bool _isdoschar(int ch);
|
|
|
|
char* _strmfe(char* dest, const char* name, const char* ext);
|
2022-06-10 14:32:57 -07:00
|
|
|
int characterEditorSave(File* stream);
|
|
|
|
int characterEditorLoad(File* stream);
|
|
|
|
void characterEditorReset();
|
2022-06-08 23:53:41 -07:00
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
} // namespace fallout
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#endif /* CHARACTER_EDITOR_H */
|