Tetris.cpp
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. #include "TetrisApplication.h"
  2. // DLL entry point, return that everything is ok
  3. GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
  4. {
  5.     return KErrNone;
  6. }
  7. // Create an application, and return a pointer to it
  8. EXPORT_C CApaApplication* NewApplication() 
  9. {
  10.     return (new CTetrisApplication);
  11. }