mirror of
				https://github.com/DerTyp7/example-top-down-unity.git
				synced 2025-11-03 22:38:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			259 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			259 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections;
 | 
						|
using System.Collections.Generic;
 | 
						|
using UnityEngine;
 | 
						|
 | 
						|
[CreateAssetMenu(fileName = "CharSprite", menuName = "CharSprite", order = 1)]
 | 
						|
public class CharSprite : ScriptableObject
 | 
						|
{
 | 
						|
    public char character;
 | 
						|
    public Sprite sprite;
 | 
						|
}
 |