13 lines
152 B
C#
13 lines
152 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
[CLSCompliant(true)]
|
|
public enum FellowshipEventType
|
|
{
|
|
Create,
|
|
Quit,
|
|
Dismiss,
|
|
Recruit,
|
|
Disband
|
|
}
|