| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Runtime.CompilerServices;
- [assembly: InternalsVisibleTo("MBansheeEditor")]
- namespace BansheeEngine
- {
- class Program
- {
- static void Main()
- {
- GUIElementStateStyle dbgStyle = new GUIElementStateStyle();
- //Color newColor = Color.red;
- //dbgStyle.textColor = newColor;
- //Color myColor = dbgStyle.textColor;
- //dbgStyle.textColor = myColor;
- }
- }
- }
|