Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding HTZ.
  • Loading branch information
MainMemory committed Feb 25, 2016
1 parent b1c1c06 commit 729ba27
Show file tree
Hide file tree
Showing 13 changed files with 606 additions and 1 deletion.
Binary file added HTZ/Background clouds (HTZ).bin
Binary file not shown.
460 changes: 460 additions & 0 deletions HTZ/HTZ.cs

Large diffs are not rendered by default.

91 changes: 91 additions & 0 deletions HTZ/HTZ.csproj
@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{43DADA60-5557-474C-BA3F-51787D67831B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HTZ</RootNamespace>
<AssemblyName>HTZ</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\bin\Release\HTZ\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="SonLVLAPI">
<HintPath>..\Dependencies\SonLVLAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="HTZ.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SonicBGScrollSaver\SonicBGScrollSaver.csproj">
<Project>{299a269c-28fe-4a88-ad98-1598973cf327}</Project>
<Name>SonicBGScrollSaver</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="art.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Background clouds %28HTZ%29.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="blocks.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="chunks.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="layout.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="palette.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="setup.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="SonicAndTails.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="layer1.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
36 changes: 36 additions & 0 deletions HTZ/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("HTZ")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("HTZ")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("423d4f26-c719-4c00-a242-3d02bc5ad95a")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file added HTZ/SonicAndTails.bin
Binary file not shown.
Binary file added HTZ/art.bin
Binary file not shown.
Binary file added HTZ/blocks.bin
Binary file not shown.
Binary file added HTZ/chunks.bin
Binary file not shown.
Binary file added HTZ/layer1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HTZ/layout.bin
Binary file not shown.
Binary file added HTZ/palette.bin
Binary file not shown.
12 changes: 12 additions & 0 deletions HTZ/setup.ini
@@ -0,0 +1,12 @@
file=HTZ.dll
type=HTZ.HTZ
name=Hill Top Zone
music=HillTop
scale=Auto
version=S2
[Level]
tiles=art.bin
blocks=blocks.bin
chunks=chunks.bin
layout=layout.bin
palette=SonicAndTails.bin:0:0:16|palette.bin:0:16:48
8 changes: 7 additions & 1 deletion SonicBGScrollSaver.sln
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
VisualStudioVersion = 12.0.40629.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SonicBGScrollSaver", "SonicBGScrollSaver\SonicBGScrollSaver.csproj", "{299A269C-28FE-4A88-AD98-1598973CF327}"
EndProject
Expand Down Expand Up @@ -39,6 +39,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MCZ", "MCZ\MCZ.csproj", "{5
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OOZ", "OOZ\OOZ.csproj", "{0F1EB346-D738-4727-B019-1B307D214E91}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HTZ", "HTZ\HTZ.csproj", "{43DADA60-5557-474C-BA3F-51787D67831B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -117,6 +119,10 @@ Global
{0F1EB346-D738-4727-B019-1B307D214E91}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0F1EB346-D738-4727-B019-1B307D214E91}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0F1EB346-D738-4727-B019-1B307D214E91}.Release|Any CPU.Build.0 = Release|Any CPU
{43DADA60-5557-474C-BA3F-51787D67831B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{43DADA60-5557-474C-BA3F-51787D67831B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{43DADA60-5557-474C-BA3F-51787D67831B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{43DADA60-5557-474C-BA3F-51787D67831B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 729ba27

Please sign in to comment.