-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
195 changed files
with
7,518 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@echo off | ||
|
||
call !clear1.bat Debug | ||
call !clear1.bat Release | ||
|
||
if exist *.pdb del *.pdb | ||
if exist *.ncb del *.ncb | ||
if exist *.user del *.user | ||
if exist Pictor_deb.exe del Pictor_deb.exe | ||
if exist src\Pictor.aps del src\Pictor.aps | ||
|
||
attrib -H Pictor.suo > nul | ||
if exist Pictor.suo del Pictor.suo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@echo off | ||
if "%1"=="" goto end | ||
if exist %1\*.pch goto start | ||
if not exist %1\*.obj goto end | ||
|
||
:start | ||
if exist %1\*.htm del %1\*.htm | ||
if exist %1\*.dep del %1\*.dep | ||
if exist %1\*.exe del %1\*.exe | ||
if exist %1\*.ilk del %1\*.ilk | ||
if exist %1\*.obj del %1\*.obj | ||
if exist %1\*.pdb del %1\*.pdb | ||
if exist %1\*.manifest del %1\*.manifest | ||
if exist %1\*.res del %1\*.res | ||
if exist %1\*.idb del %1\*.idb | ||
if exist %1\*.pch del %1\*.pch | ||
rd %1 | ||
|
||
:end | ||
|
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 9.00 | ||
# Visual Studio 2005 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Pictor", "Pictor.vcproj", "{A6409BF1-B513-4DC2-817A-8149434AF83E}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Release|Win32 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{A6409BF1-B513-4DC2-817A-8149434AF83E}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{A6409BF1-B513-4DC2-817A-8149434AF83E}.Debug|Win32.Build.0 = Debug|Win32 | ||
{A6409BF1-B513-4DC2-817A-8149434AF83E}.Release|Win32.ActiveCfg = Release|Win32 | ||
{A6409BF1-B513-4DC2-817A-8149434AF83E}.Release|Win32.Build.0 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Pictor | ||
====== | ||
version 1.0 | ||
freeware shooting game for Windows | ||
(c) 2024 Miroslav Nemecek | ||
https://www.breatharian.eu/Panda38 | ||
[email protected] | ||
[email protected] | ||
|
||
Pictor game contains 12 backgrounds (for 12 levels), | ||
13 actors, 36 enemies and 12 music loops. | ||
|
||
The Pictor source codes are freely available for any use. | ||
Source codes can be compiled using MS VC++ 2005. | ||
|
||
Pictor on Github, Windows version: https://github.com/Panda381/Pictor | ||
Pictor on Github, version for Picopad console: https://github.com/Panda381/PicoLibSDK/tree/main/PicoPad/GAME/PICTOR | ||
Pictor on www: https://www.breatharian.eu/hw/picolibsdk/index_en.html#pictor |
Oops, something went wrong.