This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types=1); | |
use Eris\Generator; | |
use Eris\Generators; | |
use Eris\TestTrait; | |
use PHPUnit\Framework\TestCase; | |
class ErisMultiDimExampleTest extends TestCase | |
{ | |
use TestTrait; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "SDL.h" | |
#include "SDL_ttf.h" | |
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <sstream> | |
void DrawImage (SDL_Surface *source, SDL_Surface *destination, int x, | |
int y) { | |
if (!source || !destination) |