2019-02-08 10:03:48 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 07.02.2019
|
|
|
|
*
|
|
|
|
* Types used for edit operations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FRED_EDIT_H)
|
|
|
|
#define FRED_EDIT_H
|
|
|
|
|
|
|
|
struct Edit_Behaviors{
|
|
|
|
b32 do_not_post_to_history;
|
2020-05-03 15:00:28 +00:00
|
|
|
i64 pos_before_edit;
|
2019-02-08 10:03:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|