2014-06-13 21:01:19 +01:00
|
|
|
/**
|
2016-09-22 19:30:56 +01:00
|
|
|
* Copyright (c) 2016 rxi
|
2014-06-13 21:01:19 +01:00
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
|
|
|
* under the terms of the MIT license. See LICENSE for details.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef QUAD_H
|
|
|
|
|
#define QUAD_H
|
|
|
|
|
|
|
|
|
|
#include "luaobj.h"
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
lua_Number x, y;
|
|
|
|
|
lua_Number width, height;
|
|
|
|
|
} quad_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|