EnumExt.cs 234 B

12345678910111213
  1. using System;
  2. using UnityEngine;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. public static class EnumExt
  6. {
  7. public static string GetHashString(this Enum e)
  8. {
  9. return e.GetHashCode().ToString();
  10. }
  11. }