Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FileAccess.cs
Go to the documentation of this file.
1namespace System.IO;
2
3[Flags]
4public enum FileAccess
5{
6 Read = 1,
7 Write = 2,
8 ReadWrite = 3
9}