Files
TheracUE/Source/MyProject/Private/VerifierTextBlock.cpp

13 lines
309 B
C++
Raw Normal View History

2025-05-09 22:20:16 +01:00
// Fill out your copyright notice in the Description page of Project Settings.
#include "VerifierTextBlock.h"
void UVerifierTextBlock::NativeOnInitialized() {
if (destInput != nullptr) {
destInput->OnMagicFloatsMangled.BindUObject(
this,
&UVerifierTextBlock::verifyFloats
);
}
}