Skip to content

Commit

Permalink
Main Commit
Browse files Browse the repository at this point in the history
The first main commit of AdVenture Calculator.
  • Loading branch information
TrapperHell committed Oct 3, 2015
1 parent 763c2ee commit bf7d398
Show file tree
Hide file tree
Showing 35 changed files with 8,004 additions and 0 deletions.
20 changes: 20 additions & 0 deletions AdVentureCalculator.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdVentureCalculator", "AdventureCalculator\AdVentureCalculator.csproj", "{1742490E-4B49-4822-99B7-E3B0CA5B4242}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
113 changes: 113 additions & 0 deletions AdVentureCalculator/AdVentureCalculator.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.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>{1742490E-4B49-4822-99B7-E3B0CA5B4242}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AdVentureCalculator</RootNamespace>
<AssemblyName>AdVentureCalculator</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<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' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\Icons\MainIcon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Windows.Forms.DataVisualization" />
</ItemGroup>
<ItemGroup>
<Compile Include="Controller\AngelInvestorController.cs" />
<Compile Include="Controller\UpgradeController.cs" />
<Compile Include="DecimalTruncateFormatProvider.cs" />
<Compile Include="EnumHelper.cs" />
<Compile Include="FunctionChainer.cs" />
<Compile Include="LZF.cs" />
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Model\AdVentureObject.cs" />
<Compile Include="Model\AngelInvestor.cs" />
<Compile Include="Model\AngelUpgrade.cs" />
<Compile Include="Model\Business.cs" />
<Compile Include="Controller\BusinessController.cs" />
<Compile Include="Model\BusinessType.cs" />
<Compile Include="Model\CashUpgrade.cs" />
<Compile Include="Model\IAdVentureObject.cs" />
<Compile Include="Model\Manager.cs" />
<Compile Include="Controller\ManagerController.cs" />
<Compile Include="Model\Planet.cs" />
<Compile Include="Model\PurchasableObject.cs" />
<Compile Include="Model\UpgradeObject.cs" />
<Compile Include="MonetaryValueDisplay.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<None Include="Resources\AC Upgrades.xlsx" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Icons\MainIcon.ico" />
<Content Include="Resources\Images\MainImage.png" />
</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>
6 changes: 6 additions & 0 deletions AdVentureCalculator/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
13 changes: 13 additions & 0 deletions AdVentureCalculator/Controller/AngelInvestorController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using AdVentureCalculator.Model;

namespace AdVentureCalculator.Controller
{
public static class AngelInvestorController
{
#region Initializer

public static AngelInvestor AngelInvestors = new AngelInvestor();

#endregion Initializer
}
}
Loading

0 comments on commit bf7d398

Please sign in to comment.