Clone of PhatAC @ https://github.com/floaterxk/PhatAC

TurbinePortal.h 446B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include "TurbineData.h"
  3. #include "TurbineAnimation.h"
  4. #include "TurbineAnimationSet.h"
  5. #include "TurbineDungeon.h"
  6. #include "TurbineXPTable.h"
  7. class TurbinePortal : public TurbineData
  8. {
  9. public:
  10. TurbinePortal();
  11. ANIMATION* GetAnimation(DWORD dwAnimID);
  12. ANIMATIONSET* GetAnimationSet(DWORD dwAnimSetID);
  13. DUNGEON* GetDungeon(DWORD dwBlockID);
  14. XPTABLE* GetXPTable(DWORD dwTableID);
  15. };
  16. typedef TurbinePortal TURBINEPORTAL;