Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Panda381 committed May 12, 2024
1 parent 17b7fa3 commit f83ccd2
Show file tree
Hide file tree
Showing 195 changed files with 7,518 additions and 0 deletions.
13 changes: 13 additions & 0 deletions !clear.bat
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
20 changes: 20 additions & 0 deletions !clear1.bat
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 added Pictor.exe
Binary file not shown.
Binary file added Pictor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions Pictor.sln
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
18 changes: 18 additions & 0 deletions Pictor.txt
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
Loading

0 comments on commit f83ccd2

Please sign in to comment.