This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
bleiz-du_team
/
binnworld
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
4
Wiki
Activity
Browse Source
src
master
pedroBzh
3 months ago
parent
54268d2033
commit
8a179fea21
1 changed files
with
20 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+20
-0
src/main.c
+ 20
- 0
src/main.c
View File
@ -0,0 +1,20 @@
#
include
<gint/display.h>
#
include
<gint/keyboard.h>
int
main
(
void
)
{
int
game_map
[
50
]
[
6
]
;
int
i
=
0
;
int
sx
=
0
;
int
x
;
while
(
i
<
50
)
{
game_map
[
i
]
[
6
]
=
0
;
game_map
[
i
]
[
6
]
=
1
;
}
dclear
(
C_WHITE
)
;
dtext
(
1
,
1
,
C_BLACK
,
"
Sample fxSDK add-in.
"
)
;
dupdate
(
)
;
getkey
(
)
;
return
1
;
}
Write
Preview
Loading…
Cancel
Save