biblekaruta

Bible Karuta Game written in C with SDL2 as graphics back-end
Log | Files | Refs | README | LICENSE

crosshair.c (420B)


      1 /*
      2   Bible Karuta Game - Crosshair source file
      3   "crosshair.c"
      4   M. Yamanaka
      5   email: myamanaka@live.com
      6   website: csmyamanaka.com
      7   license: MIT (See included "LICENSE" file for details)
      8 */
      9 
     10 #include "crosshair.h"
     11 
     12 int drawCrosshair(Xhair C){
     13   /*
     14     Draw crosshair object
     15     Arguments:
     16       C ... reference to crosshair object
     17     returns an integer indicating the success or nah
     18     execution.
     19   */
     20   return 0;
     21 }

Generated using stagit (https://codemadness.org/stagit.html)