2
0

Program.cs 521 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.CompilerServices;
  4. [assembly: InternalsVisibleTo("MBansheeEditor")]
  5. namespace BansheeEngine
  6. {
  7. class Program
  8. {
  9. static void Main()
  10. {
  11. GUIElementStateStyle dbgStyle = new GUIElementStateStyle();
  12. //Color newColor = Color.red;
  13. //dbgStyle.textColor = newColor;
  14. //Color myColor = dbgStyle.textColor;
  15. //dbgStyle.textColor = myColor;
  16. }
  17. }
  18. }