BsScriptLogEntry.h 382 B

12345678910111213141516171819
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. namespace BansheeEngine
  5. {
  6. /**
  7. * @brief Interop class between C++ & CLR for LogEntry.
  8. */
  9. class BS_SCR_BE_EXPORT ScriptLogEntry : public ScriptObject <ScriptLogEntry>
  10. {
  11. public:
  12. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "LogEntry")
  13. private:
  14. ScriptLogEntry(MonoObject* instance);
  15. };
  16. }