aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/torui/coflsky/commands/models/SoundData.java
blob: 5df18d34e8659ae64474c7b6596f8fdc4552cbe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package de.torui.coflsky.commands.models;

import com.google.gson.annotations.SerializedName;

public class SoundData {
	@SerializedName("name")
	public String Name;
	
	@SerializedName("pitch")
	public float Pitch;	
	
	public SoundData() {
		super();
	}

	public SoundData(String name, float pitch) {
		super();
		Name = name;
		Pitch = pitch;
	}
	
	
}