SpiecsEngine
 
Loading...
Searching...
No Matches

◆ ToString()

virtual std::string Spices::WindowResizeEvent::ToString ( ) const
inlineoverridevirtual

Serialize this Event Class to string.

Returns
Returns Serialized string.

Reimplemented from Spices::Event.

Definition at line 53 of file WindowEvent.h.

54 {
55 std::stringstream ss;
56 ss << "WindowResizeEvent: " << m_Width << ", " << m_Height;
57
58 return ss.str();
59 }
uint32_t m_Height
New Windows Height.
Definition WindowEvent.h:81
uint32_t m_Width
Specific this Class Type with WindowResize.
Definition WindowEvent.h:76

References m_Height, and m_Width.