11 lines
522 B
C#
11 lines
522 B
C#
namespace EDPlayerJournal;
|
|
public class CrimeTypes {
|
|
public static readonly string Assault = "assault";
|
|
public static readonly string Murder = "murder";
|
|
public static readonly string OnFootArcCutterUse = "onFoot_arcCutterUse";
|
|
public static readonly string OnFootDataTransfer = "onFoot_dataTransfer";
|
|
public static readonly string OnFootIdentityTheft = "onFoot_identityTheft";
|
|
public static readonly string OnFootMurder = "onFoot_murder";
|
|
public static readonly string Piracy = "piracy";
|
|
}
|