Skip to content

Commit

Permalink
Merge pull request #4 from ClonkAndre/dev
Browse files Browse the repository at this point in the history
Move dev into main
  • Loading branch information
ClonkAndre authored Oct 14, 2024
2 parents 182fb74 + 9f9a860 commit 62470cd
Show file tree
Hide file tree
Showing 15 changed files with 1,634 additions and 355 deletions.
3 changes: 3 additions & 0 deletions ProjectThunderIV/ProjectThunderIV.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Preview|Any CPU = Preview|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{868CD14E-2269-40A2-98AB-AD08AD1AD9F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{868CD14E-2269-40A2-98AB-AD08AD1AD9F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{868CD14E-2269-40A2-98AB-AD08AD1AD9F7}.Preview|Any CPU.ActiveCfg = Preview|Any CPU
{868CD14E-2269-40A2-98AB-AD08AD1AD9F7}.Preview|Any CPU.Build.0 = Preview|Any CPU
{868CD14E-2269-40A2-98AB-AD08AD1AD9F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{868CD14E-2269-40A2-98AB-AD08AD1AD9F7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
using System.Numerics;
using System.Runtime.InteropServices;

namespace ProjectThunderIV.API
{
[StructLayout(LayoutKind.Sequential)]
public class LightningBoltSummonConfig
{
#region Variables
public bool SpawnNow;
public Vector3 SpawnPosition;
public bool CanHaveBranches;
public bool GrowFromGroundUp;
Expand All @@ -26,7 +23,6 @@ public LightningBoltSummonConfig(Vector3 spawnPosition,
Vector3 overrideSkyColor,
float overrideSkyBrightness)
{
SpawnNow = false;
SpawnPosition = spawnPosition;
CanHaveBranches = canHaveBranches;
GrowFromGroundUp = growFromGroundUp;
Expand All @@ -37,7 +33,6 @@ public LightningBoltSummonConfig(Vector3 spawnPosition,
}
public LightningBoltSummonConfig(Vector3 spawnPosition)
{
SpawnNow = false;
SpawnPosition = spawnPosition;
CanHaveBranches = true;
GrowFromGroundUp = false;
Expand All @@ -48,7 +43,7 @@ public LightningBoltSummonConfig(Vector3 spawnPosition)
}
public LightningBoltSummonConfig()
{
SpawnNow = false;

}
#endregion
}
Expand Down
Loading

0 comments on commit 62470cd

Please sign in to comment.