Skip to content

Commit

Permalink
HOPKINS: Added Txt structure with currently known structure offsets
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Sep 22, 2012
1 parent 460b4eb commit 2876790
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions engines/hopkins/font.h
Expand Up @@ -30,11 +30,25 @@ namespace Hopkins {

class HopkinsEngine;

struct TxtItem {
int field0;
int field2;
int field4;
int field8;
int fieldA;
int fieldC;
int fieldE;
int field10;
int field3FC;
int field3FE;
int field40A;
};

class FontManager {
public:
private:
HopkinsEngine *_vm;


public:
TxtItem Txt[12];
public:
void setParent(HopkinsEngine *vm);

Expand Down

0 comments on commit 2876790

Please sign in to comment.