Files
firestorm/Gameleap/code/mw4/Libraries/3dsmax4/Include/Toolmap.h
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

52 lines
873 B
C++

/**********************************************************************
*<
FILE: toolmap.h
DESCRIPTION: defines a mapping between control identifiers and osnaps
CREATED BY: John Hutchinson
HISTORY: January 15, 1996
*> Copyright (c) 1994, All Rights Reserved.
**********************************************************************/
#ifndef __TOOLMAP__
#define __TOOLMAP__
class msgdata {
public:
int recipient;
int subindex;
int msg;
msgdata(){};
msgdata(int r, int s, int m):recipient(r), subindex(s), msg(m){};
};
class tooltabentry {
private:
int indexer;
msgdata data;
public:
tooltabentry(){};
tooltabentry(int i, int r, int s, int m);
msgdata *Query(int i);
};
class ToolTab : public Tab<tooltabentry *> {
public:
msgdata *Lookup(int toolid);
};
#endif //_TOOLMAP_