~ubuntu-branches/ubuntu/hoary/devil/hoary

« back to all changes in this revision

Viewing changes to src-IL/include/il_mdl.h

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2005-01-03 19:57:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050103195742-4ipkplcwygu3irv0
Tags: upstream-1.6.7
ImportĀ upstreamĀ versionĀ 1.6.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//-----------------------------------------------------------------------------
 
2
//
 
3
// ImageLib Sources
 
4
// Copyright (C) 2000-2002 by Denton Woods
 
5
// Last modified: 05/25/2001 <--Y2K Compliant! =]
 
6
//
 
7
// Filename: src-IL/include/il_mdl.h
 
8
//
 
9
// Description: Reads a Half-Life model file.
 
10
//
 
11
//-----------------------------------------------------------------------------
 
12
 
 
13
 
 
14
#ifndef MD2_H
 
15
#define MD2_H
 
16
 
 
17
#include "il_internal.h"
 
18
 
 
19
typedef struct TEX_HEAD
 
20
{
 
21
        char    Name[64];
 
22
        ILuint  Flags;
 
23
        ILuint  Width;
 
24
        ILuint  Height;
 
25
        ILuint  Offset;
 
26
} TEX_HEAD;
 
27
 
 
28
#endif//MD2_H