Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #pragma once
  2. #include "AssetTypeActions_BehaviorTree.h"
  3. #include "Plan.h"
  4.  
  5. class TRIASSIC_API FAssetTypeActions_Plan : public FAssetTypeActions_BehaviorTree
  6. {
  7. public:
  8.     virtual FText GetName() const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_Plan", "Plan"); }
  9.     virtual UClass* GetSupportedClass() const override { return UPlan::StaticClass(); }
  10.     virtual FColor GetTypeColor() const override { return FColor(149, 70, 255); }
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement