BsScriptGameObject.h 270 B

12345678910111213
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. namespace BansheeEngine
  4. {
  5. class BS_SCR_BE_EXPORT ScriptGameObject
  6. {
  7. public:
  8. virtual HGameObject getNativeHandle() const = 0;
  9. virtual void setNativeHandle(const HGameObject& gameObject) = 0;
  10. };
  11. }