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