Skip to content

Instantly share code, notes, and snippets.

View DarkPurpleKnight's full-sized avatar

Dark Purple Knight DarkPurpleKnight

  • Castle
  • World
View GitHub Profile
@DarkPurpleKnight
DarkPurpleKnight / Command.java
Created December 28, 2021 21:21
Code with Mosh - The Ultimate Design Patterns: Part 1 - Command Pattern - Exercise
package com.codewithmosh.command;
public interface Command {
void execute();
}