Last change
on this file since 100 was
100,
checked in by sam, 13 years ago
|
Slightly improve the documentation in a few files, add the missing
joystick class, and put a header in each source file.
|
-
Property svn:keywords set to
Id
|
File size:
444 bytes
|
Line | |
---|
1 | // |
---|
2 | // Deus Hax (working title) |
---|
3 | // Copyright (c) 2010 Sam Hocevar <sam@hocevar.net> |
---|
4 | // |
---|
5 | |
---|
6 | // |
---|
7 | // The Tiler class |
---|
8 | // --------------- |
---|
9 | // The Tiler is a static class that manages tilesets. |
---|
10 | // |
---|
11 | |
---|
12 | #if !defined __DH_TILER_H__ |
---|
13 | #define __DH_TILER_H__ |
---|
14 | |
---|
15 | #include <stdint.h> |
---|
16 | |
---|
17 | class Tiler |
---|
18 | { |
---|
19 | public: |
---|
20 | static int Register(char const *path); |
---|
21 | static void Deregister(int id); |
---|
22 | |
---|
23 | static void Render(uint32_t code, int x, int y); |
---|
24 | }; |
---|
25 | |
---|
26 | #endif // __DH_TILER_H__ |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.