2022-02-02 18:26:21 +01:00
|
|
|
package love.distributedrebirth.numberxd.base2t;
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
|
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
2022-02-02 22:51:56 +01:00
|
|
|
import love.distributedrebirth.numberxd.base2t.type.V009Tyte;
|
2022-02-02 18:26:21 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Appender model for Tytes.
|
|
|
|
|
*/
|
2022-08-24 17:33:39 +02:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
2022-02-02 18:26:21 +01:00
|
|
|
public final class BaseAppenderTyte implements BaseAppender<V009Tyte> {
|
|
|
|
|
|
|
|
|
|
private final Collection<V009Tyte> collection;
|
|
|
|
|
|
|
|
|
|
public BaseAppenderTyte(Collection<V009Tyte> collection) {
|
|
|
|
|
this.collection = collection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void add(V009Tyte value) {
|
|
|
|
|
collection.add(value);
|
|
|
|
|
}
|
|
|
|
|
}
|