BsIncludeHandler.h 467 B

1234567891011
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #ifndef __INCLUDEHANDLER_H__
  4. #define __INCLUDEHANDLER_H__
  5. #include "BsASTFX.h"
  6. char* includePush(ParseState* state, const char* filename, int line, int column, int* size);
  7. void includePop(ParseState* state);
  8. #endif