mirror of
https://github.com/open-goal/jak-project
synced 2026-06-28 19:21:06 -04:00
13 lines
176 B
C++
13 lines
176 B
C++
#ifndef JAK_COMPILER_H
|
|
#define JAK_COMPILER_H
|
|
|
|
#include "common/type_system/TypeSystem.h"
|
|
|
|
class Compiler {
|
|
public:
|
|
private:
|
|
TypeSystem m_ts;
|
|
};
|
|
|
|
#endif // JAK_COMPILER_H
|