13 lines
309 B
C++
13 lines
309 B
C++
// 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
|
|
);
|
|
}
|
|
}
|