api adjustments

This commit is contained in:
Stanley Dimant
2022-07-21 12:04:30 +02:00
parent af8516d44a
commit 6acef73943
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MareSynchronos.API
{
public enum ObjectKind
{
Player = 0,
Minion = 1,
Companion = 2,
Pet = 3
}
}