NETScript.cpp 284 B

123456789101112131415161718
  1. #include <Atomic/Core/Context.h>
  2. #include "CSComponent.h"
  3. #include "CSComponentAssembly.h"
  4. #include "NETScript.h"
  5. namespace Atomic
  6. {
  7. void RegisterNETScriptLibrary(Context* context)
  8. {
  9. CSComponent::RegisterObject(context);
  10. CSComponentAssembly::RegisterObject(context);
  11. }
  12. }