Код main.cpp к простой игре
#include "resources.h" //#include <windows.h> /* This is where all the input to the window goes to */ LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
switch(Message) {
case WM_COMMAND:{
switch(wParam){
case StartS:{
DestroyWindow(btnStart);
if(IsTimer == FALSE)
{
IsTimer = TRUE;
SetTimer(hwnd, TimerStart, 50, NULL);
}
break;
}
case ContinueS:{
DestroyWindow(hWinn);
DestroyWindow(btnContinue);
ValueHealth...
