This file contains 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"?> | |
<system xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="description.xsd"> | |
<bone name="NPC Head [Head]"/> | |
<bone name="NPC Neck [Neck]"/> | |
<bone name="NPC Spine [Spn0]"/> | |
<bone name="NPC Spine1 [Spn1]"/> | |
<bone name="NPC Spine2 [Spn2]"/> | |
<bone name="NPC L Pauldron"/> | |
<bone name="NPC R Pauldron"/> |
This file contains 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
DROP TABLE "country"; | |
CREATE TABLE "country" ( | |
"iso" character(2) NOT NULL, | |
"iso3" character(3) NOT NULL, | |
"iso_numeric" character(3) NOT NULL, | |
"fips" character(2), | |
"name" character varying(128) NOT NULL, | |
"capital" character varying(128), | |
"area" float, |