CSE.Content.ObjectConstruction.PublicStruct_PrivateCtor.PublicStruct_PrivateCtor C# (CSharp) Method

PublicStruct_PrivateCtor() private method

private PublicStruct_PrivateCtor ( int i, float f, Color color, Random random ) : System
i int
f float
color Color
random System.Random
return System
		private PublicStruct_PrivateCtor(int i, float f, Color color, Random random) {
			this.i = i;
			this.f = f;
			this.color = color;
			this.random = random;
		}
	}
PublicStruct_PrivateCtor