您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
418 B
20 行
418 B
using System;
|
|
using System.Collections.Generic;
|
|
using UIWidgets.painting;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgets.ui
|
|
{
|
|
public class Image
|
|
{
|
|
public Image(byte[] raw, int height = 100, int width = 100) {
|
|
this.rawData = raw;
|
|
this.height = height;
|
|
this.width = width;
|
|
}
|
|
|
|
public byte[] rawData;
|
|
public int height;
|
|
public int width;
|
|
}
|
|
}
|