Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.14 KB | None | 0 0
  1. struct PeakStruct
  2. {
  3.     public float freq;
  4.     public float amp;
  5.     public float energy;
  6. }
  7.  
  8. Peak P = new Peak() {
  9.     .freq = 1,
  10.     .amp = 2
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement