summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-22 20:21:15 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-22 20:21:15 +0000
commit9a160b380b94ce9b89c93214fe7b9de3f36ed01f (patch)
tree53d1992a132d6e3178b427bbaca2510120233173 /crawl-ref/source/items.h
parent23e8c7a07f9ea71e683fa748940cc7447e5a8aa1 (diff)
downloadcrawl-ref-9a160b380b94ce9b89c93214fe7b9de3f36ed01f.tar.gz
crawl-ref-9a160b380b94ce9b89c93214fe7b9de3f36ed01f.zip
Massive change from using x and y to using coord_defs(). Not quite tested,
most likely broken in some places and might break tiles. Will fix in the near future. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6636 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/items.h')
-rw-r--r--crawl-ref/source/items.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/items.h b/crawl-ref/source/items.h
index bdccd3bc43..f1b8d14d3e 100644
--- a/crawl-ref/source/items.h
+++ b/crawl-ref/source/items.h
@@ -37,8 +37,8 @@ bool dec_mitm_item_quantity( int obj, int amount );
void inc_inv_item_quantity( int obj, int amount );
void inc_mitm_item_quantity( int obj, int amount );
-bool move_item_to_grid( int *const obj, int x, int y );
-void move_item_stack_to_grid( int x, int y, int targ_x, int targ_y );
+bool move_item_to_grid( int *const obj, const coord_def& p );
+void move_item_stack_to_grid( const coord_def& from, const coord_def& to );
int move_item_to_player( int obj, int quant_got, bool quiet = false );
void mark_items_non_pickup_at(const coord_def &pos);
bool is_stackable_item( const item_def &item );
@@ -95,7 +95,7 @@ void pickup(void);
/* ***********************************************************************
* called from: beam - items - transfor
* *********************************************************************** */
-bool copy_item_to_grid( const item_def &item, int x_plos, int y_plos,
+bool copy_item_to_grid( const item_def &item, const coord_def& p,
int quant_drop = -1, // item.quantity by default
bool mark_dropped = false);