mirror of https://github.com/AxioDL/metaforce.git
16 lines
319 B
C++
16 lines
319 B
C++
#ifndef EXPR_HPP
|
|
#define EXPR_HPP
|
|
|
|
#include "CExprBase.hpp"
|
|
#include "CExprRoot.hpp"
|
|
#include "CExprCall.hpp"
|
|
#include "CExprGroup.hpp"
|
|
#include "CExprMul.hpp"
|
|
#include "CExprAdd.hpp"
|
|
#include "CExprSub.hpp"
|
|
#include "CExprTexture.hpp"
|
|
#include "CExprTextureGather.hpp"
|
|
#include "CExprLighting.hpp"
|
|
|
|
#endif // EXPR_HPP
|