21 lines
314 B
C
21 lines
314 B
C
/**
|
|
* Copyright (c) 2016 rxi
|
|
*
|
|
* 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
|