Dawn/src/dawn/games/vn/events/VNSetEvent.hpp
2023-06-23 16:33:53 -07:00

23 lines
452 B
C++

// 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 {
template<class T>
class VNSetEvent : public VNEvent {
public:
T *modifies = nullptr;
T value;
protected:
void onStart() override {
assertNotNull(this->modifies);
*modifies = value;
this->next();
}
};
}