summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AttackType.cs
blob: 67ac6c1be583b2debd8bb1e94e34a9c0b44fd75a (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace XMainClient
{
	internal enum AttackType
	{
		PhysicalAttack = 1,
		MagicAttack
	}
}