Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. #ifndef MAIN_H_INCLUDED
  2. #define MAIN_H_INCLUDED
  3.  
  4. // Pickin' Sticks
  5. // A clone/port of Pickin' Sticks in SDL to GNU/Linux
  6. // By NIcholas J. Ebel
  7.  
  8. /*
  9. Copyright (c) 2010, Nicholas J. Ebel
  10. All rights reserved.
  11.  
  12. Redistribution and use in source and binary forms, with or without
  13. modification, are permitted provided that the following conditions are met:
  14. * Redistributions of source code must retain the above copyright
  15. notice, this list of conditions and the following disclaimer.
  16. * Redistributions in binary form must reproduce the above copyright
  17. notice, this list of conditions and the following disclaimer in the
  18. documentation and/or other materials provided with the distribution.
  19. * Neither the name of the Nicholas J. Ebel nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  20.  
  21. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  22. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL NICHOLAS J. EBEL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25.  
  26. #include <cstdio>
  27. #include <SDL/SDL.h>
  28. #include <SDL/SDL_mixer.h>
  29. #include <SDL/SDL_ttf.h>
  30. #define SCREEN_WIDTH 640
  31. #define SCREEN_HEIGHT 480
  32.  
  33. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement