Files
UnrealEngine/Engine/Extras/VisualStudioSnippets/Unreal.UFunction.snippet
2025-05-18 13:04:45 +08:00

21 lines
692 B
Plaintext

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>unreal-UFunction</Title>
<Shortcut>ufunction</Shortcut>
<Description>Unreal Engine UFunction Template</Description>
<Author>Epic Games</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Code Language="cpp"><![CDATA[/** Does the thing. */
UFUNCTION(BlueprintCallable, Category="Game Play")
void DoThing();
]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>