MyClass.cs 275 B

123456789101112131415161718
  1. 
  2. using AtomicEngine;
  3. using System;
  4. namespace AtomicNETTest
  5. {
  6. public class MyComponent : CSComponent
  7. {
  8. public bool MyBoolValue = true;
  9. [Inspector]
  10. public float MyFloatValue = 42.0f;
  11. public string MyStringValue = "Hey!";
  12. }
  13. }