Advertisement
bynaki

Point

Mar 2nd, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. bool HelloWorld::init()
  2. {
  3.     if ( !Layer::init() )
  4.     {
  5.         return false;
  6.     }
  7.  
  8.     Point point = Point(240, 160);
  9.     CCLOG("%f, %f", point.x, point.y);
  10.  
  11.     return true;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement