@@ -1,4 +1,4 @@
-package hxd.res.fmt;
+package hxd.fmt.awd;
class Block {
public var id : Int;
@@ -1,7 +1,7 @@
-import hxd.res.fmt.AwdData;
+import hxd.fmt.awd.Data;
-class AwdReader {
+class Reader {
static inline var TTRIANGLE_GEOM = 1;
static inline var TINSTANCE = 23;
@@ -3,7 +3,7 @@ package hxd.res;
class AwdModel extends Resource {
public function load() {
- return new hxd.res.fmt.AwdReader().read(entry.getBytes());
+ return new hxd.fmt.awd.Reader().read(entry.getBytes());
}