2022-05-19 01:51:26 -07:00
|
|
|
#ifndef INTERPRETER_EXTRA_H
|
|
|
|
#define INTERPRETER_EXTRA_H
|
|
|
|
|
2022-07-29 06:04:05 -07:00
|
|
|
#include "interpreter.h"
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
void _intExtraClose_();
|
|
|
|
void _initIntExtra();
|
2022-07-29 06:04:05 -07:00
|
|
|
void intExtraUpdate();
|
|
|
|
void intExtraRemoveProgramReferences(Program* program);
|
2022-05-19 01:51:26 -07:00
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
} // namespace fallout
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#endif /* INTERPRETER_EXTRA_H */
|