mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
15 lines
214 B
C#
15 lines
214 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.GZBuilder.Data
|
|||
|
{
|
|||
|
public enum ModelLoadState
|
|||
|
{
|
|||
|
None,
|
|||
|
Loading,
|
|||
|
Ready
|
|||
|
}
|
|||
|
}
|