Files
lovedos/src/quad.h
2016-09-22 19:31:05 +01:00

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