This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Simple JavaScript Inheritance for ES 5.1 ( includes polyfill for IE < 9 ) | |
| * based on http://ejohn.org/blog/simple-javascript-inheritance/ | |
| * (inspired by base2 and Prototype) | |
| * MIT Licensed. | |
| */ | |
| (function (global) { | |
| "use strict"; | |
| if (!Object.create) { | |
| Object.create = (function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Created by Isaac Holmlund ([email protected]) --> | |
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
| <xs:element name="type" nillable="false"> | |
| <xs:simpleType> | |
| <xs:restriction base="xs:string"> | |
| <xs:enumeration value="action"/> | |
| <xs:enumeration value="action-attack"/> | |
| <xs:enumeration value="action-duration"/> | |
| <xs:enumeration value="action-reaction"/> |
NewerOlder