Advertisement
cgprojectsfx

ProcSolarSystem.h

Jul 1st, 2019
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 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.h"
  9.  
  10. #include "ProcSolarSystem.generated.h"
  11.  
  12. UCLASS()
  13. class ORVILLETREK_API UProcSolarSystem: public UObject
  14. {
  15. GENERATED_BODY()
  16.  
  17. public:
  18. UProcSolarSystem();
  19. ~UProcSolarSystem();
  20.  
  21. void UGenerateTest();
  22.  
  23. private:
  24. // Sun
  25. UProcOrbital Sun;
  26. UProcOrbital SunBinary;
  27.  
  28. // Orbitals;
  29. TArray<UProcOrbital*> Orbitals;
  30.  
  31. // Distance
  32. uint64 OrbitalDistance;
  33.  
  34. // Angle
  35. float OrbitalAngle;
  36.  
  37. // Name
  38. FString Name;
  39.  
  40. // Class
  41. uint8 SolarSystemClass;
  42. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement