Build 130105

This commit is contained in:
2013-11-18 20:06:17 +02:00
parent 8816ce4615
commit 43c240001c
81 changed files with 2620 additions and 586 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace DrumKit
{
[XmlType("sound")]
public class SoundSource
{
[XmlAttribute("intensity")]
public int Intensity { get; set; }
[XmlText()]
public string Source { get; set; }
}
}