summary refs log tree commit diff stats
path: root/util.h
blob: 836f065fb1afc5980a29b293df7c6beeab770cea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <SDL.h>
#include <SDL_ttf.h>

#include <string>

#ifndef UTIL_H
#define UTIL_H

void wrap(int& x, int& y);
TTF_Font* loadFont(int size);
const char* getDataFile();
SDL_Texture* loadImage(SDL_Renderer* renderer, std::string file);
void applyTexture(SDL_Renderer* renderer, SDL_Texture* tex, int x, int y);

#endif