Revision: | 1114 |
Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen |
File size: | 524 byte(s) |
Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. |
# | Content |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | |
4 | namespace Oni.Totoro |
5 | { |
6 | internal class Attack |
7 | { |
8 | public int Start; |
9 | public int End; |
10 | public BoneMask Bones; |
11 | public AttackFlags Flags; |
12 | public float Knockback; |
13 | public int HitPoints; |
14 | public AnimationType HitType; |
15 | public int HitLength; |
16 | public int StunLength; |
17 | public int StaggerLength; |
18 | public readonly List<AttackExtent> Extents = new List<AttackExtent>(); |
19 | } |
20 | } |