/+junk/c_sdl_joypad

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/c_sdl_joypad

« back to all changes in this revision

Viewing changes to MousePointer.c

  • Committer: Gustav Hartvigsson
  • Date: 2014-01-09 20:07:52 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140109200752-owx481zfl2n4tjsc
* added and changed little in the files Lincening information.
* Started to implement the JS parser's C file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "MousePointer.h"
2
2
#include "game_utils.h"
3
3
 
 
4
/**
 
5
 * This file, as the rest of the project is under MIT license.
 
6
 * see http://opensource.org/licenses/MIT
 
7
 *
 
8
 * Author Gustav Hartvigsson <gustav.hartvigsson _at_ gmail.com> 2014
 
9
 */
 
10
 
4
11
MousePointer * mouse_pointer_new (int  b_box_h, int b_box_w){
5
12
  MousePointer * self = malloc (sizeof(MousePointer));
6
13
  fprintf (stdout, "Creating MousePointer: address: %ld\n", (long) self);