mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
23 lines
345 B
C++
23 lines
345 B
C++
#ifndef STATIC_PAGE_FILE_H
|
|
#define STATIC_PAGE_FILE_H
|
|
|
|
#include "core/string.h"
|
|
|
|
#include "static_page.h"
|
|
|
|
class StaticPageFile : public StaticPage {
|
|
RCPP_OBJECT(StaticPageFile, StaticPage);
|
|
|
|
public:
|
|
void load();
|
|
|
|
void _notification(const int what);
|
|
|
|
String file_path;
|
|
bool process_if_can;
|
|
|
|
StaticPageFile();
|
|
~StaticPageFile();
|
|
};
|
|
|
|
#endif |