]> git.draconx.ca Git - upkg.git/blobdiff - src/engine/texture.h
texture: Add missing integer properties.
[upkg.git] / src / engine / texture.h
index 24e729ad4772466a19bbd18099f479a0212a29ea..b76beb26bfa0b701b44cab438a9879363e129c43 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  upkg: tool for manipulating Unreal Tournament packages.
- *  Copyright (C) 2009 Nick Bowler
+ *  Copyright © 2009-2011 Nick Bowler
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -38,7 +38,9 @@ typedef struct EngineTextureClass EngineTextureClass;
 struct EngineTexture {
        UObject parent;
 
-       unsigned int usize, vsize;
+       unsigned int usize,  vsize;
+       unsigned int uclamp, vclamp;
+       unsigned int ubits,  vbits;
 };
 
 struct EngineTextureClass {