mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 15:45:19 -04:00
13 lines
113 B
C++
13 lines
113 B
C++
#pragma once
|
|
|
|
#include <types.h>
|
|
|
|
namespace EGG
|
|
{
|
|
|
|
struct Matrix34f{
|
|
f32 mData[3][4];
|
|
};
|
|
|
|
} // namespace EGG
|