Last change
on this file was 1114, checked in by iritscen, 5 years ago |
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.
|
File size:
524 bytes
|
Line | |
---|
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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.