A forum to store posts deemed exceptionally wise and useful
-
Noiecity
- Posts: 163
- Joined: Wed Aug 23, 2023 7:22 pm
-
Contact:
Post
by Noiecity »
I attach the link with the content (sprites and others), the code and an example executable(CC0).
Download:
https://www.mediafire.com/file/n1fbwcie ... d.rar/file
It is necessary to add
device->yield(); to solve the problem of not being able to move the cursor when changing windows, like that:
Code: Select all
while (device->run()) {
if (device->isWindowActive())
{
**the code**
}
else
{
device->yield();
}
}
device->drop();
return 0;
Enjoy
**
If you are looking for people with whom to develop your game, even to try functionalities, I can help you, free.
CC0 man.
**
-
thenewkgb
- Posts: 59
- Joined: Thu Jan 25, 2024 6:54 pm
- Location: UK
Post
by thenewkgb »
Oh my. That looks very, very cool!
-
Noiecity
- Posts: 163
- Joined: Wed Aug 23, 2023 7:22 pm
-
Contact:
Post
by Noiecity »
:p
**
If you are looking for people with whom to develop your game, even to try functionalities, I can help you, free.
CC0 man.
**