summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/IgnoredFiles/Enums.cs
blob: 05f1abcf9323c19e0d28e74f5986a6ccd9277a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

namespace Godot
{
    public enum Margin
    {
        Left = 0,
        Top = 1,
        Right = 2,
        Bottom = 3
    }

    public enum Error
    {
        Ok = 0
    }

    public enum PropertyHint
    {
        None = 0
    }
}