package com.hypixel.hytale.component.data.change; import com.hypixel.hytale.component.system.ISystem; import javax.annotation.Nonnull; public class SystemChange implements DataChange { private final ChangeType type; private final ISystem system; public SystemChange(ChangeType type, ISystem system) { this.type = type; this.system = system; } public ChangeType getType() { return this.type; } public ISystem getSystem() { return this.system; } @Nonnull @Override public String toString() { return "SystemChange{type=" + this.type + ", system=" + this.system + "}"; } }