jak-project/goalc/compiler/Compiler.h

13 lines
176 B
C
Raw Normal View History

2020-08-27 20:53:11 -04:00
#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