mirror of https://github.com/AxioDL/metaforce.git
18 lines
172 B
C++
18 lines
172 B
C++
|
#ifndef SPECTER_TEXTVIEW_HPP
|
||
|
#define SPECTER_TEXTVIEW_HPP
|
||
|
|
||
|
#include "View.hpp"
|
||
|
|
||
|
namespace Specter
|
||
|
{
|
||
|
|
||
|
class TextView : public View
|
||
|
{
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // SPECTER_TEXTVIEW_HPP
|