r5sdk/r5dev/thirdparty/cppnet/cppkore/InvalidateEventArgs.h

19 lines
367 B
C
Raw Normal View History

2022-05-21 19:58:09 +02:00
#pragma once
#include <cstdint>
#include "DrawingBase.h"
namespace Forms
{
// Provides data for the OnInvalidate event
class InvalidateEventArgs
{
public:
InvalidateEventArgs() = default;
InvalidateEventArgs(Drawing::Rectangle InvalidRect);
~InvalidateEventArgs() = default;
// The area that was invalidated
Drawing::Rectangle InvalidRectangle;
};
}