jairoandre

Cards Struct

Jun 28th, 2022 (edited)
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. union Cards {
  2.   u64 bit = {}
  3.   struct {
  4.     u8 skill: 8;
  5.     u8 basic: 8;
  6.     u8 debt: 8;
  7.     u8 bonus: 8;
  8.     u8 refact: 4;
  9.     u8 review: 4;
  10.     u8 CI: 4;
  11.     u8 archi: 4;
  12.     u8 task: 4;
  13.     u8 daily: 4;
  14.     u8 coding: 4;
  15.     u8 train: 4;
  16.   }
  17. }
Add Comment
Please, Sign In to add comment