| 54 | tScriptInfo ScriptInfo[MAX_IDS] = {{ID_SHIELD_ORB, "Shield"}, {ID_ENERGY_ORB, "Energy"}}; |
| 55 | |
| 56 | class BaseObjScript { |
| 57 | public: |
| 58 | BaseObjScript(); |
| 59 | ~BaseObjScript(); |
| 60 | virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); |
| 61 | |
| 62 | protected: |
| 63 | bool called; |
| 64 | }; |
| 65 | |
| 66 | struct tShieldOrbInfo { |
| 67 | int hitcount; |
nothing calls this directly
no outgoing calls
no test coverage detected