diff options
| author | megamage <none@none> | 2009-04-07 19:38:09 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-04-07 19:38:09 -0500 |
| commit | f59c4debf6d413fefb7f55d422263fbb44772054 (patch) | |
| tree | a65e607067e5caf81a2b10b0eaecbaa78d9cf062 /src/game/InstanceData.h | |
| parent | 24dede78d339f348ab67d4e7235ed12d93802b69 (diff) | |
[7622] Added creatureAI with related database tables. Author: AlexDereka
*Note: three tables are renamed.
--HG--
branch : trunk
Diffstat (limited to 'src/game/InstanceData.h')
| -rw-r--r-- | src/game/InstanceData.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/InstanceData.h b/src/game/InstanceData.h index b2571de66bd..c33beccfffb 100644 --- a/src/game/InstanceData.h +++ b/src/game/InstanceData.h @@ -67,6 +67,10 @@ class TRINITY_DLL_SPEC InstanceData //called on creature creation virtual void OnCreatureCreate(Creature * /*creature*/, uint32 /*creature_entry*/) {} + //All-purpose data storage 64 bit + virtual uint64 GetData64(uint32 /*Data*/) { return 0; } + virtual void SetData64(uint32 /*Data*/, uint64 /*Value*/) { } + //All-purpose data storage 32 bit virtual uint32 GetData(uint32) { return 0; } virtual void SetData(uint32, uint32 data) {} |
