diff --git a/Trunk/Components/CzokoŚmieciarka.DataModels.GeneralModels/Models/TypeOfGarbage.cs b/Trunk/Components/CzokoŚmieciarka.DataModels.GeneralModels/Models/TypeOfGarbage.cs
index 38f6415..5c86b10 100644
--- a/Trunk/Components/CzokoŚmieciarka.DataModels.GeneralModels/Models/TypeOfGarbage.cs
+++ b/Trunk/Components/CzokoŚmieciarka.DataModels.GeneralModels/Models/TypeOfGarbage.cs
@@ -1,18 +1,17 @@
-using CzokoŚmieciarka.DataModels.Enums;
-using CzokoŚmieciarka.DataModels.Interfaces;
+using CzokoŚmieciarka.DataModels.Interfaces;
namespace CzokoŚmieciarka.DataModels.GeneralModels.Models
{
public class TypeOfGarbage : ITypeOfGarbage
{
- public TypeOfGarbage(GarbageType garbageType, int density, int processingTimePerUnit = 0)
+ public TypeOfGarbage(string garbageType, int density, int processingTimePerUnit = 0)
{
this.GarbageType = garbageType;
this.Density = density;
this.ProcessingTimePerUnit = processingTimePerUnit;
}
- public GarbageType GarbageType { get; }
+ public string GarbageType { get; }
public int ProcessingTimePerUnit { get; }
public int Density { get; }
}
diff --git a/Trunk/Components/CzokoŚmieciarka.DataModels/Interfaces/ITypeOfGarbage.cs b/Trunk/Components/CzokoŚmieciarka.DataModels/Interfaces/ITypeOfGarbage.cs
index b8b65c0..f99614a 100644
--- a/Trunk/Components/CzokoŚmieciarka.DataModels/Interfaces/ITypeOfGarbage.cs
+++ b/Trunk/Components/CzokoŚmieciarka.DataModels/Interfaces/ITypeOfGarbage.cs
@@ -3,13 +3,12 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using CzokoŚmieciarka.DataModels.Enums;
namespace CzokoŚmieciarka.DataModels.Interfaces
{
public interface ITypeOfGarbage
{
- GarbageType GarbageType { get; }
+ string GarbageType { get; }
int ProcessingTimePerUnit { get; }
diff --git a/Trunk/CzokoŚmieciarka.sln b/Trunk/CzokoŚmieciarka.sln
index 6ca794f..abbf3b7 100644
--- a/Trunk/CzokoŚmieciarka.sln
+++ b/Trunk/CzokoŚmieciarka.sln
@@ -9,9 +9,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CzokoŚmieciarka.DataModels
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CzokoŚmieciarka.WPF", "Interface\CzokoŚmieciarka.WPF\CzokoŚmieciarka.WPF.csproj", "{06937DFB-242D-46BD-9A4B-486D156B62A9}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Czoko_Smieciarka.AI_Naive", "Czoko_Smieciarka.AI_Naive\Czoko_Smieciarka.AI_Naive.csproj", "{A1F1D99A-4E5B-4389-B776-321D8A5976EE}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CzokoŚmieciarka.WPFv2", "Interface\CzokoŚmieciarka.WPFv2\CzokoŚmieciarka.WPFv2.csproj", "{2BADDDA9-A77C-4FB2-9F28-4DAE712E8947}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Czoko_Smieciarka.AI_Naive", "Czoko_Smieciarka.AI_Naive\Czoko_Smieciarka.AI_Naive.csproj", "{A1F1D99A-4E5B-4389-B776-321D8A5976EE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -35,10 +33,6 @@ Global
{A1F1D99A-4E5B-4389-B776-321D8A5976EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A1F1D99A-4E5B-4389-B776-321D8A5976EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A1F1D99A-4E5B-4389-B776-321D8A5976EE}.Release|Any CPU.Build.0 = Release|Any CPU
- {2BADDDA9-A77C-4FB2-9F28-4DAE712E8947}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {2BADDDA9-A77C-4FB2-9F28-4DAE712E8947}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {2BADDDA9-A77C-4FB2-9F28-4DAE712E8947}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {2BADDDA9-A77C-4FB2-9F28-4DAE712E8947}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPF/Images/dupa.jpg b/Trunk/Interface/CzokoŚmieciarka.WPF/Images/dupa.jpg
new file mode 100644
index 0000000..476ef0b
Binary files /dev/null and b/Trunk/Interface/CzokoŚmieciarka.WPF/Images/dupa.jpg differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.config b/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.config
deleted file mode 100644
index 731f6de..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.xaml b/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.xaml
deleted file mode 100644
index 72052c4..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.xaml.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.xaml.cs
deleted file mode 100644
index 0282415..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/App.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows;
-
-namespace CzokoŚmieciarka.WPFv2
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/CzokoŚmieciarka.WPFv2.csproj b/Trunk/Interface/CzokoŚmieciarka.WPFv2/CzokoŚmieciarka.WPFv2.csproj
index 039f0d7..4451d31 100644
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/CzokoŚmieciarka.WPFv2.csproj
+++ b/Trunk/Interface/CzokoŚmieciarka.WPFv2/CzokoŚmieciarka.WPFv2.csproj
@@ -63,7 +63,6 @@
App.xaml
Code
-
MainWindow.xaml
Code
@@ -73,7 +72,6 @@
-
Code
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/glass.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/glass.png
deleted file mode 100644
index 60a475e..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/glass.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/organic.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/organic.png
deleted file mode 100644
index fec2e9e..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/organic.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/paper.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/paper.png
deleted file mode 100644
index 548493e..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/paper.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/plasticmetal.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/plasticmetal.png
deleted file mode 100644
index cbf47a7..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/Dumps/plasticmetal.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/garbageCollector.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/garbageCollector.png
deleted file mode 100644
index 3283e83..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/garbageCollector.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/house.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/house.png
deleted file mode 100644
index c69da1e..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/house.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/intersection.png b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/intersection.png
deleted file mode 100644
index c57ed66..0000000
Binary files a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Images/intersection.png and /dev/null differ
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Interfaces/IWPFObject.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Interfaces/IWPFObject.cs
deleted file mode 100644
index c08c9fb..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Interfaces/IWPFObject.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Controls;
-using System.Windows.Media;
-
-namespace CzokoŚmieciarka.WPFv2.Interfaces
-{
- public interface IWPFObject
- {
- string ImagePath { get; set; }
- Image Image { get; set; }
- }
-}
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml b/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml
deleted file mode 100644
index b21a30d..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml.cs
index 0d79abb..cae978d 100644
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml.cs
+++ b/Trunk/Interface/CzokoŚmieciarka.WPFv2/MainWindow.xaml.cs
@@ -12,8 +12,6 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
-using CzokoŚmieciarka.WPFv2.Interfaces;
-using CzokoŚmieciarka.WPFv2.Models;
namespace CzokoŚmieciarka.WPFv2
{
@@ -22,25 +20,17 @@ namespace CzokoŚmieciarka.WPFv2
///
public partial class MainWindow : Window
{
- public static int Columns = 9;
- public static int Rows = 9;
- IWPFObject[,] Objects = new IWPFObject[Columns,Rows];
public MainWindow()
{
ColumnDefinition column;
RowDefinition row;
InitializeComponent();
- for(int i = 0; i < Rows; i++)
+ for(int i = 0; i < 10; i++)
{
column = new ColumnDefinition();
row = new RowDefinition();
Board.ColumnDefinitions.Add(column);
Board.RowDefinitions.Add(row);
- for (int j = 0; j < Columns; j++)
- {
- Road road = new Road("path");
- Objects[i, j] = road;
- }
}
Board.ShowGridLines = true;
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Dump.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Dump.cs
index 5690370..8c1e517 100644
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Dump.cs
+++ b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Dump.cs
@@ -3,19 +3,17 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using System.Windows.Controls;
using System.Windows.Media;
using CzokoŚmieciarka.DataModels.Interfaces;
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
using CzokoŚmieciarka.DataModels.Models;
-using CzokoŚmieciarka.WPFv2.Interfaces;
namespace CzokoŚmieciarka.WPFv2.Models
{
- class WPFDump : ADump, IWPFObject
+ class WPFDump : ADump
{
public string ImagePath { get; set; }
- public Image Image { get; set; }
+ public ImageBrush ImageBrush { get; set; }
public WPFDump(ITypeOfGarbage typeOfGarbage, int maxVolume, Coords localization, string imagePath) : base(typeOfGarbage, maxVolume, localization)
{
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/GarbageCollector.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/GarbageCollector.cs
index f0910ae..87e1238 100644
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/GarbageCollector.cs
+++ b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/GarbageCollector.cs
@@ -3,19 +3,17 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using System.Windows.Controls;
using System.Windows.Media;
using CzokoŚmieciarka.DataModels.Interfaces.GarbageCollector;
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
using CzokoŚmieciarka.DataModels.Models;
-using CzokoŚmieciarka.WPFv2.Interfaces;
namespace CzokoŚmieciarka.WPFv2.Models
{
- class WPFGarbageCollector : AGarbageCollector, IWPFObject
+ class WPFGarbageCollector : AGarbageCollector
{
public string ImagePath { get; set; }
- public Image Image { get; set; }
+ public ImageBrush ImageBrush { get; set; }
public WPFGarbageCollector(Coords startPosition, IEnumerable trashContainers, string imagePath) : base(startPosition, trashContainers)
{
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/House.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/House.cs
index 6e2f398..f5da43c 100644
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/House.cs
+++ b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/House.cs
@@ -7,15 +7,14 @@ using System.Windows.Media;
using CzokoŚmieciarka.DataModels.Interfaces;
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
using CzokoŚmieciarka.DataModels.Models;
-using CzokoŚmieciarka.WPFv2.Interfaces;
namespace CzokoŚmieciarka.WPFv2.Models
{
- class WPFHouse : IGarbageLocalization, IWPFObject
+ class WPFHouse : IGarbageLocalization
{
public Coords Coords { get; }
public IEnumerable TrashCans { get; set; }
- public string ImagePath { get; set; }
+ private string ImagePath { get; set; }
public ImageBrush ImageBrush { get; set; }
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Road.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Road.cs
deleted file mode 100644
index bf378cf..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Models/Road.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Controls;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using CzokoŚmieciarka.DataModels.Models;
-using CzokoŚmieciarka.WPFv2.Interfaces;
-
-namespace CzokoŚmieciarka.WPFv2.Models
-{
- class Road : IWPFObject
- {
- public string ImagePath { get; set; }
- public Image Image { get; set; }
-
- public Road(string imagePath)
- {
- ImagePath = imagePath;
- }
- }
-}
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/AssemblyInfo.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/AssemblyInfo.cs
deleted file mode 100644
index d74f52c..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-using System.Reflection;
-using System.Resources;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-using System.Windows;
-
-// 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("CzokoŚmieciarka.WPFv2")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("CzokoŚmieciarka.WPFv2")]
-[assembly: AssemblyCopyright("Copyright © 2019")]
-[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)]
-
-//In order to begin building localizable applications, set
-//CultureYouAreCodingWith in your .csproj file
-//inside a . For example, if you are using US english
-//in your source files, set the to en-US. Then uncomment
-//the NeutralResourceLanguage attribute below. Update the "en-US" in
-//the line below to match the UICulture setting in the project file.
-
-//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
-
-
-[assembly: ThemeInfo(
- ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
-)]
-
-
-// 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")]
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Resources.Designer.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Resources.Designer.cs
deleted file mode 100644
index bfbd2f2..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace CzokoŚmieciarka.WPFv2.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if ((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CzokoŚmieciarka.WPFv2.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Resources.resx b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Resources.resx
deleted file mode 100644
index af7dbeb..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Settings.Designer.cs b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Settings.Designer.cs
deleted file mode 100644
index 1372997..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace CzokoŚmieciarka.WPFv2.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Settings.settings b/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Settings.settings
deleted file mode 100644
index 033d7a5..0000000
--- a/Trunk/Interface/CzokoŚmieciarka.WPFv2/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file