BsCommonStructs.h 141 B

123456789101112
  1. #pragma once
  2. namespace BansheeEngine
  3. {
  4. /**
  5. * @brief Represents a MAC (ethernet) address.
  6. */
  7. struct MACAddress
  8. {
  9. UINT8 value[6];
  10. };
  11. }