Add interface for a local, i.e. mutable Sone.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / LocalSone.java
1 package net.pterodactylus.sone.data;
2
3 /**
4  * A local, i.e. mutable {@link Sone} instance. All modifications of a Sone or its objects has to go
5  * through this object.
6  *
7  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
8  */
9 public interface LocalSone extends Sone {
10
11 }