CrabUI
Loading...
Searching...
No Matches
IRefreshable.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Reflection;
5using System.Diagnostics;
6using System.Runtime.CompilerServices;
7using System.IO;
8
9using Barotrauma;
10using Microsoft.Xna.Framework;
11using Microsoft.Xna.Framework.Input;
12using Microsoft.Xna.Framework.Graphics;
13
14using System.Xml;
15using System.Xml.Linq;
16
17namespace CrabUI
18{
19 /// <summary>
20 /// For stuff that should be in some way refreshed
21 /// This method appears way too many times
22 /// There are also secret public void CascadeRefresh() method in CUIComponent.Events that refreshes all childs recursivelly
23 /// </summary>
24 public interface IRefreshable
25 {
26 public void Refresh();
27 }
28}
For stuff that should be in some way refreshed This method appears way too many times There are a...