// Copyright (c) 2023 Dominic Masters
// 
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#pragma once
#include "VNEvent.hpp"

namespace Dawn {
  class VNDummyEvent : public VNEvent {
    protected:
      void onStart() override {
        std::cout << "Test" << std::endl;
        this->next();
      }
  };
}