projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
new script test (picnic) tiles
[supertux.git]
/
src
/
scripting
/
display.cpp
1
#include <config.h>
2
3
#include <string>
4
#include <stdio.h>
5
#include "display.h"
6
7
#define NOIMPL printf(__FUNCTION__ " not implemented\n");
8
9
namespace Scripting
10
{
11
Display::Display()
12
{}
13
14
Display::~Display()
15
{}
16
17
void
18
Display::set_effect(const std::string& )
19
{}
20
}
21