12 lines
158 B
C
12 lines
158 B
C
|
#pragma once
|
||
|
|
||
|
#include "ContentFile.h"
|
||
|
|
||
|
class ContentPage : public ContentFile
|
||
|
{
|
||
|
public:
|
||
|
ContentPage(const Path& filename);
|
||
|
|
||
|
void load() override;
|
||
|
};
|