diff --git a/.vsconfig b/.vsconfig deleted file mode 100644 index b3c233d..0000000 --- a/.vsconfig +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "1.0", - "components": [ - "Microsoft.Net.Component.4.6.2.TargetingPack", - "Microsoft.VisualStudio.Component.Unreal.Workspace", - "Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL", - "Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64", - "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", - "Microsoft.VisualStudio.Component.Windows11SDK.22621", - "Microsoft.VisualStudio.Workload.CoreEditor", - "Microsoft.VisualStudio.Workload.ManagedDesktop", - "Microsoft.VisualStudio.Workload.NativeDesktop", - "Microsoft.VisualStudio.Workload.NativeGame" - ] -} diff --git a/Source/ToonTanks/BasePawn.h b/Source/ToonTanks/BasePawn.h index 15ca6a7..6e9e1c4 100644 --- a/Source/ToonTanks/BasePawn.h +++ b/Source/ToonTanks/BasePawn.h @@ -15,6 +15,9 @@ public: // Sets default values for this pawn's properties ABasePawn(); + UPROPERTY(VisibleAnywhere) + int32 VisibleAnywhereInt = 12; + protected: // Called when the game starts or when spawned virtual void BeginPlay() override;