Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

张树文 / mvp_xhc

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • mvp_xhc
  • xhc_copy
  • assets
  • script
  • config
  • Role.ts
  • 张树文's avatar
    项目文件copy · 7caf4b12
    张树文 committed Jan 20, 2022
    7caf4b12
Role.ts 374 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import { RoleType } from "../avg/EditorEnums";

// Generated by Editor
export interface IRole {
    id: number;
    name: string;
    age: number;
    constellation?: number;
    height: number;
    weight: number;
    like?: number;
    appraise?: number;
    skin: number[];
    RoleType: RoleType;
}

export let role: { name: string, type?: IRole } = {
    name: 'role'
}