diff options
| author | Ray Hogenson <rayhogenson@gmail.com> | 2012-04-15 20:22:26 -0800 |
|---|---|---|
| committer | Ray Hogenson <rayhogenson@gmail.com> | 2012-04-15 20:22:26 -0800 |
| commit | 4f5dc7a577a4243aa7d92f625c04cb43727c9dad (patch) | |
| tree | 818e739e51eded32ea789f850198808567037c99 /src/yeti.cpp | |
| parent | 077d3219d01ba55d519acd3e36e055431f2c477d (diff) | |
| download | yetihack-4f5dc7a577a4243aa7d92f625c04cb43727c9dad.tar.zst | |
added an intro screen
Diffstat (limited to 'src/yeti.cpp')
| -rw-r--r-- | src/yeti.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/yeti.cpp b/src/yeti.cpp index dd8c4b5..adaef32 100644 --- a/src/yeti.cpp +++ b/src/yeti.cpp @@ -297,3 +297,13 @@ int yeti::absolute(int value) return value; } +int yeti::setx(int newx) +{ + x = newx; +} + +int yeti::sety(int newy) +{ + y = newy; +} + |
