Script.h 246 B

1234567891011121314151617181920
  1. #ifndef ANKI_RESOURCE_SCRIPT_H
  2. #define ANKI_RESOURCE_SCRIPT_H
  3. #include <string>
  4. namespace anki {
  5. /// Python script resource
  6. class Script
  7. {
  8. public:
  9. void load(const char* filename);
  10. private:
  11. std::string source;
  12. };
  13. } // end namespace
  14. #endif