bt -> b3 and BT -> B3 rename for content and filenames

This commit is contained in:
erwin coumans
2013-04-28 23:11:10 -07:00
parent 6bcb5b9d5f
commit 7366e262fd
178 changed files with 5218 additions and 5218 deletions

View File

@@ -0,0 +1,35 @@
#ifndef B3_INT2_H
#define B3_INT2_H
struct b3UnsignedInt2
{
union
{
struct
{
unsigned int x,y;
};
struct
{
unsigned int s[2];
};
};
};
struct b3Int2
{
union
{
struct
{
int x,y;
};
struct
{
int s[2];
};
};
};
#endif