Advertisement
cgprojectsfx

ProcObital.h

Jul 1st, 2019
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2.  
  3. #pragma once
  4.  
  5. #include "CoreMinimal.h"
  6. #include "Object.h"
  7.  
  8. #include "ProcOrbital.generated.h"
  9.  
  10. UCLASS()
  11. class ORVILLETREK_API UProcOrbital: public UObject
  12. {
  13. GENERATED_BODY()
  14.  
  15. public:
  16. UProcOrbital();
  17. ~UProcOrbital();
  18.  
  19. void UMakeEarth();
  20.  
  21. private:
  22. // Distance from orbit
  23. uint64 OrbitalDistance;
  24.  
  25. // Angle
  26. float OrbitalAngle;
  27.  
  28. // Class
  29. uint8 OrbitalClass;
  30.  
  31. // size
  32. uint64 Radius;
  33.  
  34. // Create a name
  35. FString Name;
  36. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement