package io.reisub.dreambot.cblackjack; import io.reisub.dreambot.util.Constants; import org.dreambot.api.script.Category; import org.dreambot.api.script.ScriptManifest; import org.dreambot.api.script.impl.TaskScript; @SuppressWarnings("unused") @ScriptManifest(name = "CBlackjack", description = "Pummels and steals", author = Constants.AUTHOR, version = 1.0, category = Category.THIEVING, image = "") public class CBlackjack extends TaskScript { @Override public void onStart() { } }