mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-19 14:11:15 +00:00
21 lines
472 B
C++
21 lines
472 B
C++
#ifndef CHARACTER_EDITOR_H
|
|
#define CHARACTER_EDITOR_H
|
|
|
|
#include "db.h"
|
|
|
|
namespace fallout {
|
|
|
|
extern int gCharacterEditorRemainingCharacterPoints;
|
|
|
|
int characterEditorShow(bool isCreationMode);
|
|
void characterEditorInit();
|
|
bool _isdoschar(int ch);
|
|
char* _strmfe(char* dest, const char* name, const char* ext);
|
|
int characterEditorSave(File* stream);
|
|
int characterEditorLoad(File* stream);
|
|
void characterEditorReset();
|
|
|
|
} // namespace fallout
|
|
|
|
#endif /* CHARACTER_EDITOR_H */
|