Skip to content

Commit c594dd0

Browse files
committed
Simon:
-Basic finished! Song working, logic working, everything working! -To Do: Tutorial and thanks
1 parent 6df48a4 commit c594dd0

File tree

10 files changed

+1242
-1
lines changed

10 files changed

+1242
-1
lines changed

Simon/Simon.vcxproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,16 @@
2525
</ItemGroup>
2626
<ItemGroup>
2727
<ClInclude Include="ansi_escapes.h" />
28+
<ClInclude Include="bass.h" />
2829
<ClInclude Include="windowsConsoleInteraction.h" />
2930
</ItemGroup>
31+
<ItemGroup>
32+
<Media Include="blue_button.wav" />
33+
<Media Include="green_button.wav" />
34+
<Media Include="red_button.wav" />
35+
<Media Include="wrong.wav" />
36+
<Media Include="yellow_button.wav" />
37+
</ItemGroup>
3038
<PropertyGroup Label="Globals">
3139
<VCProjectVersion>16.0</VCProjectVersion>
3240
<ProjectGuid>{108814A1-98EE-47AA-8749-2BFDAFC780E0}</ProjectGuid>
@@ -100,10 +108,14 @@
100108
<SDLCheck>true</SDLCheck>
101109
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
102110
<ConformanceMode>true</ConformanceMode>
111+
<AdditionalIncludeDirectories>
112+
</AdditionalIncludeDirectories>
103113
</ClCompile>
104114
<Link>
105115
<SubSystem>Console</SubSystem>
106116
<GenerateDebugInformation>true</GenerateDebugInformation>
117+
<AdditionalLibraryDirectories>
118+
</AdditionalLibraryDirectories>
107119
</Link>
108120
</ItemDefinitionGroup>
109121
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">

Simon/Simon.vcxproj.filters

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,25 @@
3232
<ClInclude Include="windowsConsoleInteraction.h">
3333
<Filter>Arquivos de Cabeçalho</Filter>
3434
</ClInclude>
35+
<ClInclude Include="bass.h">
36+
<Filter>Arquivos de Cabeçalho</Filter>
37+
</ClInclude>
38+
</ItemGroup>
39+
<ItemGroup>
40+
<Media Include="blue_button.wav">
41+
<Filter>Arquivos de Recurso</Filter>
42+
</Media>
43+
<Media Include="green_button.wav">
44+
<Filter>Arquivos de Recurso</Filter>
45+
</Media>
46+
<Media Include="wrong.wav">
47+
<Filter>Arquivos de Recurso</Filter>
48+
</Media>
49+
<Media Include="yellow_button.wav">
50+
<Filter>Arquivos de Recurso</Filter>
51+
</Media>
52+
<Media Include="red_button.wav">
53+
<Filter>Arquivos de Recurso</Filter>
54+
</Media>
3555
</ItemGroup>
3656
</Project>

0 commit comments

Comments
 (0)