mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 09:56:25 +00:00
20 lines
354 B
C#
20 lines
354 B
C#
using System;
|
|
|
|
namespace NBTExplorer.Model
|
|
{
|
|
[Flags]
|
|
public enum NodeCapabilities
|
|
{
|
|
None = 0,
|
|
Cut = 0x1,
|
|
Copy = 0x2,
|
|
PasteInto = 0x4,
|
|
Rename = 0x8,
|
|
Edit = 0x10,
|
|
Delete = 0x20,
|
|
CreateTag = 0x40,
|
|
Search = 0x80,
|
|
Reorder = 0x100,
|
|
Refresh = 0x200,
|
|
}
|
|
}
|