forked from LeHulk1/RandoBlazer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTextUpdate.h
More file actions
20 lines (17 loc) · 744 Bytes
/
Copy pathTextUpdate.h
File metadata and controls
20 lines (17 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __TEXTUPDATE_H__
#define __TEXTUPDATE_H__
#include <fstream>
#include <vector>
namespace ROMUpdate {
int ConvertToHex(int Dec);
void NPCTextUpdateMain(const std::vector<Lair>& RandomizedLairList,
const std::vector<Item>& RandomizedItemList,
std::fstream &ROMFile,
const std::string& Seed);
void GeneralTextUpdate(const std::vector<Lair>& RandomizedLairList,
const std::vector<Item>& RandomizedItemList,
std::fstream &ROMFile,
const std::string& Seed);
void NPCItemTextUpdate(int ItemIndex, int ItemID, std::fstream &ROMFile);
}
#endif // __TEXTUPDATE_H__