chovy-sign/GameBuilder/StreamType.cs

15 lines
245 B
C#
Raw Permalink Normal View History

2024-04-12 04:50:25 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GameBuilder
{
public enum StreamType : uint
{
TYPE_MEMORY_STREAM,
TYPE_FILE_STREAM
}
}