Add basic code

This commit is contained in:
2025-02-22 01:06:04 -05:00
parent 9ffe9abddb
commit d3f9f594af
6 changed files with 386 additions and 0 deletions
@@ -0,0 +1,16 @@
#pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "SlimeAnchorInterface.generated.h"
UINTERFACE(MinimalAPI, Blueprintable)
class USlimeAnchorInterface : public UInterface
{
GENERATED_BODY()
};
class WIZARDINGCENTRAL_API ISlimeAnchorInterface
{
GENERATED_BODY()
};