mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-26 12:33:27 +00:00
18 lines
215 B
C++
18 lines
215 B
C++
#ifndef SPECTER_TABLE_HPP
|
|
#define SPECTER_TABLE_HPP
|
|
|
|
#include "View.hpp"
|
|
|
|
namespace Specter
|
|
{
|
|
|
|
class Table : public View
|
|
{
|
|
public:
|
|
Table(ViewResources& res, View& parentView);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SPECTER_TABLE_HPP
|