21 lines
307 B
C++
21 lines
307 B
C++
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "setRes.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class MOTRISA_API UsetRes : public UBlueprintFunctionLibrary
|
|
{
|
|
GENERATED_BODY() public:
|
|
|
|
UFUNCTION(BlueprintCallable)
|
|
static void SetPos(int posX, int posY);
|
|
|
|
};
|