Files
UnrealEngineUWP/Engine/Extras/VisualStudioSnippets/Unreal.UFunction.snippet
mark lintott 9f3eb35834 #jira UE-104748
#rb Ben.Marsh

Snippet Renames form Ue4 to Unreal

[CL 14998975 by mark lintott in ue5-main branch]
2021-01-06 10:46:05 -04: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>