23 lines
235 B
C
23 lines
235 B
C
|
/*
|
||
|
* 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;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|
||
|
|