-fixed sp,e demos issues and crashes
This commit is contained in:
parent
fa0c196c60
commit
2107f3908c
9 changed files with 100 additions and 42 deletions
|
|
@ -4,17 +4,20 @@ enum GUIColor = "GUIColor";
|
|||
|
||||
struct GUIRange
|
||||
{
|
||||
union
|
||||
struct
|
||||
{
|
||||
struct
|
||||
{
|
||||
int min;
|
||||
int max;
|
||||
}
|
||||
struct
|
||||
{
|
||||
float minf;
|
||||
float maxf;
|
||||
}
|
||||
int min;
|
||||
int max;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct GUIRangeF
|
||||
{
|
||||
struct
|
||||
{
|
||||
float minf;
|
||||
float maxf;
|
||||
}
|
||||
}
|
||||
|
||||
enum GUIDisabled = "GUIDisabled";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue