This website requires JavaScript.
Explore
Help
Sign In
Sara
/
kernmodule-cpp
Watch
1
Star
0
Fork
You've already forked kernmodule-cpp
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
72ce2044f4
kernmodule-cpp
/
src
/
main.cpp
7 lines
91 B
C++
Raw
Normal View
History
Unescape
Escape
feat: defined game class
2024-11-15 12:30:41 +00:00
#
include
"game.hpp"
TEMPLATE
2024-11-14 14:50:12 +00:00
int
main
(
int
argc
,
char
*
argv
[
]
)
{
feat: defined game class
2024-11-15 12:30:41 +00:00
Game
game
{
}
;
game
.
run
(
)
;
TEMPLATE
2024-11-14 14:50:12 +00:00
}