- Scans <rc.data.location>/hooks for files on initialize.
This commit is contained in:
Paul Beckingham 2014-05-13 17:12:30 -04:00
parent cc112aeec7
commit 12a2012f20
2 changed files with 8 additions and 1 deletions

View file

@ -27,6 +27,9 @@
#ifndef INCLUDED_HOOKS
#define INCLUDED_HOOKS
#include <vector>
#include <string>
class Hooks
{
public:
@ -41,6 +44,7 @@ public:
void onExit ();
private:
std::vector <std::string> _scripts;
};
#endif