EgoDLL.cpp 255 B

1234567891011121314
  1. // EgoDLL.cpp : Defines the exported functions for the DLL.
  2. //
  3. #include "framework.h"
  4. #include "./include/EgoInterface.h"
  5. #include "EgoController.h"
  6. IEgoControl* GetEgoController(IEgoNotify* n)
  7. {
  8. CEgoController* c=new CEgoController(n);
  9. return c;
  10. }