BsScriptLogEntry.cpp 513 B

12345678910111213141516
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "Wrappers/BsScriptLogEntry.h"
  4. #include "BsMonoManager.h"
  5. #include "BsMonoClass.h"
  6. #include "BsMonoUtil.h"
  7. namespace bs
  8. {
  9. ScriptLogEntry::ScriptLogEntry(MonoObject* instance)
  10. :ScriptObject(instance)
  11. { }
  12. void ScriptLogEntry::initRuntimeData()
  13. { }
  14. }